~edwargix/emacs.d

34b07a762693e109a98dff23882013e236395cc6 — David Florness 5 years ago 6f92b0c
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 /.
1 files changed, 3 insertions(+), 1 deletions(-)

M lisp/setup-ivy.el
M lisp/setup-ivy.el => lisp/setup-ivy.el +3 -1
@@ 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)))