branch: elpa/isl
commit 402e2ae67a9d7a4caf5f384579cc41fb36dd614a
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
Use standard keybinding for next and prev
---
isearch-light.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/isearch-light.el b/isearch-light.el
index dde59befc4c..87df4fd2908 100644
--- a/isearch-light.el
+++ b/isearch-light.el
@@ -85,8 +85,8 @@
(defvar isl-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map minibuffer-local-map)
- (define-key map (kbd "C-z") 'isl-goto-next)
- (define-key map (kbd "M-z") 'isl-goto-prev)
+ (define-key map (kbd "C-s") 'isl-goto-next)
+ (define-key map (kbd "C-r") '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)