Add another keybind to isearch.

This commit is contained in:
KJ 2023-09-09 01:37:29 -04:00
parent e6456414d7
commit 04e3e2ec29
1 changed files with 8 additions and 0 deletions

View File

@ -25,6 +25,14 @@
;; ("C-c v o" . ivy-pop-view)
;; ("C-c v ." . ivy-switch-view)
;; Colocando isearch en otro keybind
("C-S-s" . isearch-forward)
("C-S-r" . isearch-backward)
:map isearch-mode-map
("C-S-s" . isearch-repeat-forward)
("C-S-r" . isearch-repeat-backward)
:map counsel-mode-map
([remap swiper] . counsel-grep-or-swiper)
([remap swiper-backward] . counsel-grep-or-swiper-backward)