branch: elpa/isl
commit e8293f15f7a4dc2809459a0a17645ca4c452250e
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
Bind C-n and C-p
---
isearch-light.el | 2 ++
1 file changed, 2 insertions(+)
diff --git a/isearch-light.el b/isearch-light.el
index e2578c58448..e3f2df3f14d 100644
--- a/isearch-light.el
+++ b/isearch-light.el
@@ -142,6 +142,8 @@ in pattern."
(set-keymap-parent map minibuffer-local-map)
(define-key map (kbd "C-s") 'isl-goto-next)
(define-key map (kbd "C-r") 'isl-goto-prev)
+ (define-key map (kbd "C-n") 'isl-goto-next)
+ (define-key map (kbd "C-p") 'isl-goto-prev)
(define-key map (kbd "<down>") 'isl-goto-next)
(define-key map (kbd "<up>") 'isl-goto-prev)
(define-key map (kbd "RET") 'isl-exit-at-point)