branch: externals/transient commit 98d502023817aa06f3046ba89c7c5a856ed88c35 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@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))