From c393eaac139f202480cb5d8220c9c3ffad8df834 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 22 Mar 2021 06:30:41 +0000 Subject: (Emacs)~avy-goto-char-timer now uses C-s, switching with isearch --- Emacs/.config/emacs/config.org | 6 ++++-- 1 file 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 -- cgit v1.2.3-13-gbd6f