Skip to content

Commit

Permalink
fix(keybinding): handle SPC u SPC u ...
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Jun 18, 2023
1 parent 601972b commit 77a4948
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions core/me-keybindings.el
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,13 @@
;; ====== Project ======
"p" '(nil :wk "project"))

;; To handle repeated "SPC u" like repeated "C-u"
(general-def
:keymaps 'universal-argument-map
:prefix minemacs-leader-key
:global-prefix minemacs-global-mode-prefix
"u" #'universal-argument-more)

;; HACK: This is a synchronization feature, providing `me-general-ready' tells
;; the `+map!', `+map-local!', ... macros that `general' is ready and the
;; definers `+minemacs--internal-map!', `+minemacs--internal-map-local!', ...
Expand Down

0 comments on commit 77a4948

Please sign in to comment.