Fix `SPC u` not repeating universal-argument

- Addresses #371
This commit is contained in:
luxbock 2015-09-08 17:30:18 +07:00 committed by syl20bnr
parent bb24c36304
commit 5d86782101
1 changed files with 4 additions and 0 deletions

View File

@ -52,6 +52,10 @@
;; Universal argument ---------------------------------------------------------
(evil-leader/set-key "u" 'universal-argument)
(when (memq dotspacemacs-editing-style '(vim hybrid))
(define-key universal-argument-map
(kbd (concat dotspacemacs-leader-key " u"))
'universal-argument-more))
;; shell command -------------------------------------------------------------
(evil-leader/set-key "!" 'shell-command)
;; applications ---------------------------------------------------------------