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

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

[elpa] externals/transient 98d5020238 14/17: transient-popup-navigation-


From: Jonas Bernoulli
Subject: [elpa] externals/transient 98d5020238 14/17: transient-popup-navigation-map: No longer bind C-p and C-n
Date: Fri, 25 Mar 2022 06:22:18 -0400 (EDT)

branch: externals/transient
commit 98d502023817aa06f3046ba89c7c5a856ed88c35
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    transient-popup-navigation-map: No longer bind C-p and C-n
    
    If a transient prefix allows the use of non-suffixes, then it is not
    appropriate to take over these keys.  This is going to matter more
    when we both enable popup navigation by default and more transients
    allow the use of non-suffixes.
---
 lisp/transient.el | 2 --
 1 file changed, 2 deletions(-)

diff --git a/lisp/transient.el b/lisp/transient.el
index 6cbb55b63d..9723c20692 100644
--- a/lisp/transient.el
+++ b/lisp/transient.el
@@ -3734,9 +3734,7 @@ resumes the suspended transient.")
   (let ((map (make-sparse-keymap)))
     (define-key map (kbd "<down-mouse-1>") #'transient-noop)
     (define-key map (kbd "<up>")   #'transient-backward-button)
-    (define-key map (kbd "C-p")    #'transient-backward-button)
     (define-key map (kbd "<down>") #'transient-forward-button)
-    (define-key map (kbd "C-n")    #'transient-forward-button)
     (define-key map (kbd "C-r")    #'transient-isearch-backward)
     (define-key map (kbd "C-s")    #'transient-isearch-forward)
     map))



reply via email to

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