Add keybindings for isearch-repeat-*

This commit is contained in:
contrapunctus 2022-01-20 22:41:55 +05:30
parent 081f338b50
commit 7aedd2b6fd
1 changed files with 9 additions and 0 deletions

View File

@ -1078,6 +1078,15 @@ Don't try to check if there are files with a certain extension...it will lead to
:PROPERTIES:
:CUSTOM_ID: search
:END:
** isearch
#+BEGIN_SRC emacs-lisp
(use-package isearch
:bind (:map isearch-mode-map
("C-c" . #'isearch-repeat-backward)
("C-r" . #'isearch-repeat-forward)))
#+END_SRC
** ag, the Silver Searcher
:PROPERTIES:
:CUSTOM_ID: ag