branch: externals/transient commit b1da0cab5d70e258866d1f10f3d87306dd4d9a50 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Remove my personal key bindings That was useful during development, but now it would only confuse users. --- lisp/transient.el | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/lisp/transient.el b/lisp/transient.el index 21044edd6a..48e4b7f21b 100644 --- a/lisp/transient.el +++ b/lisp/transient.el @@ -1153,18 +1153,15 @@ edited using the same functions as used for transients.") 'transient--layout (cl-mapcan (lambda (s) (transient--parse-child 'transient-common-commands s)) - `([:hide (lambda () + '([:hide (lambda () (and (not (memq (car transient--redisplay-key) transient--common-command-prefixes)) (not transient-show-common-commands))) ["Value commands" ("C-x s " "Set" transient-set) ("C-x C-s" "Save" transient-save) - (,(if (featurep 'jkl) "M-i " "M-p ") - "Previous value" transient-history-prev) - (,(if (featurep 'jkl) "M-k " "M-n ") - "Next value" transient-history-next) - ] + ("M-p " "Previous value" transient-history-prev) + ("M-n " "Next value" transient-history-next)] ["Sticky commands" ;; Like `transient-sticky-map' except that ;; "C-g" has to be bound to a different command.