Improve Info-mode searching

This commit is contained in:
Devin Jacobs 2019-11-14 22:29:11 -07:00 committed by Pierre Neidhardt
parent 631622aec0
commit e5c599c35b
1 changed files with 4 additions and 9 deletions

View File

@ -70,14 +70,9 @@
;; TODO: Restore digit arguments? Use g[n] instead.
;; TODO: Should search with "n"/"N" cover the full manual like "C-s"/"C-r" does?
;; TODO: Directions?
"n" (if (evil-collection-evil-search-enabled)
evil-collection-evil-search-next
'isearch-repeat-forward)
"N" (if (evil-collection-evil-search-enabled)
evil-collection-evil-search-previous
'isearch-repeat-backward)
;; NOTE: We do NOT search the entire buffer, only the narrowed buffer.
"n" evil-collection-evil-search-next
"N" evil-collection-evil-search-previous
;; goto
"gd" 'Info-goto-node ; TODO: "gd" does not match the rationale of "go to definition". Change?
@ -97,7 +92,7 @@
"gk" 'Info-prev
"g?" 'Info-summary
"?" 'evil-ex-search-backward ; Else this would be `Info-summary'.
"?" evil-collection-evil-search-backward ; Else this would be `Info-summary'.
;; quit
"q" 'Info-exit