fix: allow M-u to work multiple times

This commit is contained in:
Kiana Sheibani 2024-08-22 18:21:44 -04:00
parent f63b79d747
commit cdff3ea38b
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -1235,7 +1235,9 @@ It's sometimes useful to have a ~universal-argument~ binding that doesn't go thr
#+begin_src emacs-lisp
(map! :map global-map
"M-u" #'universal-argument)
"M-u" #'universal-argument
:map universal-argument-map
"M-u" #'universal-argument-more)
#+end_src
It's also sometimes useful to have an ~evil-ex~ binding that /does/ go through the leader key.