From 34b07a762693e109a98dff23882013e236395cc6 Mon Sep 17 00:00:00 2001 From: David Florness Date: Sun, 24 Nov 2019 23:16:01 -0700 Subject: [PATCH] Bind C-n to the same as C-s during isearch I often accidentally hit C-n and start an fzf process when I instead want to jump to the next isearch result. The 'n' in "C-n" makes sense to my brain between that's how you go to the next result when doing an Evil search with /. --- lisp/setup-ivy.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/setup-ivy.el b/lisp/setup-ivy.el index 4dff6d4..8d86773 100644 --- a/lisp/setup-ivy.el +++ b/lisp/setup-ivy.el @@ -23,4 +23,6 @@ :bind (("C-s" . swiper) :map Info-mode-map - ("C-s" . isearch-forward))) + ("C-s" . isearch-forward) + :map isearch-mode-map + ("C-n" . isearch-repeat-forward))) -- 2.38.4