Add isearch history bindings

This commit is contained in:
contrapunctus 2022-02-15 01:56:19 +05:30
parent 9f583f7616
commit 5f5e201ec2
1 changed files with 3 additions and 1 deletions

View File

@ -1132,7 +1132,9 @@ Don't try to check if there are files with a certain extension...it will lead to
(use-package isearch
:bind (:map isearch-mode-map
("C-c" . #'isearch-repeat-backward)
("C-r" . #'isearch-repeat-forward)))
("C-r" . #'isearch-repeat-forward)
("M-c" . #'isearch-ring-retreat)
("M-r" . #'isearch-ring-advance)))
#+END_SRC
** ag, the Silver Searcher