branch: elpa/isl
commit fc1a0f80a2f80e343ee1366cea0c483bf23b9136
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
Add arrow key bindings
---
isearch-light.el | 2 ++
1 file changed, 2 insertions(+)
diff --git a/isearch-light.el b/isearch-light.el
index 63b5212e7cc..792a6297ce7 100644
--- a/isearch-light.el
+++ b/isearch-light.el
@@ -20,6 +20,8 @@
(set-keymap-parent map minibuffer-local-map)
(define-key map (kbd "C-z") 'il-search-goto-next)
(define-key map (kbd "M-z") 'il-search-goto-prev)
+ (define-key map (kbd "<down>") 'il-search-goto-next)
+ (define-key map (kbd "<up>") 'il-search-goto-prev)
(define-key map (kbd "RET") 'il-search-exit-at-point)
map))