summaryrefslogtreecommitdiff
path: root/evil-macrostep.el
diff options
context:
space:
mode:
authorPierre Neidhardt <ambrevar@gmail.com>2017-11-23 15:38:52 +0100
committerPierre Neidhardt <ambrevar@gmail.com>2017-11-23 15:38:52 +0100
commita309f3a1574b7dfb7eb5bc89edc35f218e1e5cc5 (patch)
tree8bc314a5d5a6b0f6f24ea0f8bf2185e6f4c82add /evil-macrostep.el
parentcd9b6c66996f4ea93ee2093b90841544fb7b6bb3 (diff)
macrostep: Fix missing kbd
Diffstat (limited to 'evil-macrostep.el')
-rw-r--r--evil-macrostep.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/evil-macrostep.el b/evil-macrostep.el
index b735e9b..a2b188f 100644
--- a/evil-macrostep.el
+++ b/evil-macrostep.el
@@ -42,8 +42,8 @@
"u" 'macrostep-collapse
"gj" 'macrostep-next-macro
"gk" 'macrostep-prev-macro
- "C-j" 'macrostep-next-macro
- "C-k" 'macrostep-prev-macro))
+ (kbd "C-j") 'macrostep-next-macro
+ (kbd "C-k") 'macrostep-prev-macro))
(provide 'evil-macrostep)
;;; evil-macrostep.el ends here