From cdff3ea38be468b3c18a19adff974298d0773288 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Thu, 22 Aug 2024 18:21:44 -0400 Subject: [PATCH] fix: allow `M-u` to work multiple times --- config.org | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index 368289a..a483c6a 100644 --- a/config.org +++ b/config.org @@ -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.