From 89311f567ebfd0f13e0d870c0b586a5a7b9addcd Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 21 Jan 2019 22:10:18 -0500 Subject: [PATCH] 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. --- modules/config/default/+evil-bindings.el | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/modules/config/default/+evil-bindings.el b/modules/config/default/+evil-bindings.el index a59fbf406..1f320f49a 100644 --- a/modules/config/default/+evil-bindings.el +++ b/modules/config/default/+evil-bindings.el @@ -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)