branch: master
commit d173bd7a1acbbd1bd618d8338042103f28b84063
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>
ivy.el (ivy-minibuffer-map): Bind <next> and <prior>
Fixes #1099
---
ivy.el | 2 ++
1 file changed, 2 insertions(+)
diff --git a/ivy.el b/ivy.el
index dcd16d9..57414a6 100644
--- a/ivy.el
+++ b/ivy.el
@@ -300,6 +300,8 @@ action functions.")
(define-key map (kbd "C-g") 'minibuffer-keyboard-quit)
(define-key map [remap scroll-up-command] 'ivy-scroll-up-command)
(define-key map [remap scroll-down-command] 'ivy-scroll-down-command)
+ (define-key map (kbd "<next>") 'ivy-scroll-up-command)
+ (define-key map (kbd "<prior>") 'ivy-scroll-down-command)
(define-key map (kbd "C-v") 'ivy-scroll-up-command)
(define-key map (kbd "M-v") 'ivy-scroll-down-command)
(define-key map (kbd "C-M-n") 'ivy-next-line-and-call)