Add docstring to +default-repeat-keys

And switch order of M-;/A-; to match sort order for M-x/A-x/s-; binds in
config.el.
This commit is contained in:
Henrik Lissner 2019-01-21 22:10:18 -05:00
parent ebf9e6c7e8
commit 89311f567e
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -18,8 +18,8 @@
(map! (:map override
;; A little sandbox to run code in
"A-;" #'eval-expression
"M-;" #'eval-expression)
"M-;" #'eval-expression
"A-;" #'eval-expression)
[remap evil-jump-to-tag] #'projectile-find-tag
[remap find-tag] #'projectile-find-tag
@ -764,7 +764,10 @@
;; Universal motion repeating keys
(defvar +default-repeat-keys (cons ";" ",")
"TODO")
"The keys to use for repeating motions.
This is a cons cell whose CAR is the key for repeating a motion forward, and
whose CDR is for repeating backward. They should both be kbd-able strings.")
(when +default-repeat-keys
(defmacro do-repeat! (command next-func prev-func)