emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master c30a6e2 046/348: ivy.el (ivy-minibuffer-map): Undo remap


From: Oleh Krehel
Subject: [elpa] master c30a6e2 046/348: ivy.el (ivy-minibuffer-map): Undo remap
Date: Sat, 8 Apr 2017 11:03:21 -0400 (EDT)

branch: master
commit c30a6e208641e76c069f57744b58ed680792edf2
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>

    ivy.el (ivy-minibuffer-map): Undo remap
    
    "C-v" and "M-v" bindings stopped working.
    
    Fixes #535.
---
 ivy.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ivy.el b/ivy.el
index d6707e6..3312fcb 100644
--- a/ivy.el
+++ b/ivy.el
@@ -251,8 +251,8 @@ Example:
     (define-key map (kbd "M-n") 'ivy-next-history-element)
     (define-key map (kbd "M-p") 'ivy-previous-history-element)
     (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 "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)
     (define-key map (kbd "C-M-p") 'ivy-previous-line-and-call)
     (define-key map (kbd "M-q") 'ivy-toggle-regexp-quote)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]