branch: externals/transient commit 2fed1b4f907234155ce67468e8c24ed1535c942b Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Change transient-show's key binding Bind "C-t" instead of "C-v" to `transient-show'. This is necessary because we want to bind "C-v" to `transient-scroll-up' for consistency with the global binding for "C-v", which is `scroll-up-command'. Use "C-t" because `transient-show' is somewhat similar to `transient-toggle-common', which "C-x t" is bound to. --- lisp/transient.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/transient.el b/lisp/transient.el index f21f634ef6..7676689d0f 100644 --- a/lisp/transient.el +++ b/lisp/transient.el @@ -1099,7 +1099,7 @@ but unfortunately that does not exist (yet?)." (let ((map (make-sparse-keymap))) (define-key map (kbd "C-p") 'universal-argument) (define-key map (kbd "C--") 'negative-argument) - (define-key map (kbd "C-v") 'transient-show) + (define-key map (kbd "C-t") 'transient-show) (define-key map (kbd "?") 'transient-help) (define-key map (kbd "C-h") 'transient-help) (define-key map (kbd "M-p") 'transient-history-prev)