From 66b54524037231891f8de0c796692a350b23f487 Mon Sep 17 00:00:00 2001 From: James Nguyen Date: Sun, 5 Nov 2017 09:46:34 -0800 Subject: [PATCH] Fix macrostep function name --- evil-collection.el | 2 +- evil-macrostep.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/evil-collection.el b/evil-collection.el index 92a5642..b6151fc 100644 --- a/evil-collection.el +++ b/evil-collection.el @@ -84,7 +84,7 @@ (evil-ivy-set-keys)) (with-eval-after-load 'macrostep (require 'evil-macrostep) - (evil-collection-set-keys)) + (evil-macrostep-set-keys)) (with-eval-after-load 'p4 (require 'evil-p4) (evil-p4-set-keys)) diff --git a/evil-macrostep.el b/evil-macrostep.el index 245962a..b0e920e 100644 --- a/evil-macrostep.el +++ b/evil-macrostep.el @@ -29,7 +29,7 @@ (require 'evil-collection-util) (require 'macrostep) -(defun evil-collection-set-keys () +(defun evil-macrostep-set-keys () ;; Keymaps don't seem to be populated on first try. ;; Force `evil' to normalize keymaps. (add-hook 'macrostep-mode-hook #'evil-normalize-keymaps)