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:
parent
ebf9e6c7e8
commit
89311f567e
1 changed files with 6 additions and 3 deletions
|
@ -18,8 +18,8 @@
|
||||||
|
|
||||||
(map! (:map override
|
(map! (:map override
|
||||||
;; A little sandbox to run code in
|
;; 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 evil-jump-to-tag] #'projectile-find-tag
|
||||||
[remap find-tag] #'projectile-find-tag
|
[remap find-tag] #'projectile-find-tag
|
||||||
|
@ -764,7 +764,10 @@
|
||||||
;; Universal motion repeating keys
|
;; Universal motion repeating keys
|
||||||
|
|
||||||
(defvar +default-repeat-keys (cons ";" ",")
|
(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
|
(when +default-repeat-keys
|
||||||
(defmacro do-repeat! (command next-func prev-func)
|
(defmacro do-repeat! (command next-func prev-func)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue