diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-03-22 06:30:41 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-03-22 06:30:41 +0000 |
commit | c393eaac139f202480cb5d8220c9c3ffad8df834 (patch) | |
tree | 48039c839a1c1b35b72afde4fe9926209445ce41 /Emacs/.config | |
parent | eba81335dfbcd70291ccd42a659924a1ac8da068 (diff) | |
download | dotfiles-c393eaac139f202480cb5d8220c9c3ffad8df834.tar.gz dotfiles-c393eaac139f202480cb5d8220c9c3ffad8df834.tar.bz2 dotfiles-c393eaac139f202480cb5d8220c9c3ffad8df834.zip |
(Emacs)~avy-goto-char-timer now uses C-s, switching with isearch
Diffstat (limited to 'Emacs/.config')
-rw-r--r-- | Emacs/.config/emacs/config.org | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 3681cd4..d40b273 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -963,7 +963,8 @@ Use hydras for stuff that I use often, currently buffer manipulation #+end_src ** Avy Setup avy with leader. As I use =avy-goto-char-timer= a lot, use the -=M-s= bind. +=C-s= bind which replaces isearch. Switch isearch to M-s in case I +need to use it. #+begin_src emacs-lisp (use-package avy :after evil @@ -973,7 +974,8 @@ Setup avy with leader. As I use =avy-goto-char-timer= a lot, use the "l" #'avy-goto-line) (general-def :states '(normal motion) - (kbd "M-s") #'avy-goto-char-timer)) + (kbd "C-s") #'avy-goto-char-timer + (kbd "M-s") #'isearch-forward)) #+end_src ** Ace window Though evil provides a great many features in terms of window |