summaryrefslogtreecommitdiff
path: root/evil-collection.el
diff options
context:
space:
mode:
authorJames Nguyen <james@jojojames.com>2017-12-06 17:41:09 -0800
committerJames Nguyen <james@jojojames.com>2017-12-06 17:50:37 -0800
commit9eb7d3db0d4b7ffbc6ea6c137b0f2ec21f907d53 (patch)
treefee440d522a6270fca6b4989f654e10da8d293a1 /evil-collection.el
parent4992d5fb0fd310d73ddc8a8301120552eb9a136f (diff)
Change namespace to evil-collection
Diffstat (limited to 'evil-collection.el')
-rw-r--r--evil-collection.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/evil-collection.el b/evil-collection.el
index 4a8bed5..a053948 100644
--- a/evil-collection.el
+++ b/evil-collection.el
@@ -111,8 +111,8 @@ Alternatively, you may register select bindings manually, for
instance:
(with-eval-after-load 'calendar
- (require 'evil-calendar)
- (evil-calendar-setup))"
+ (require 'evil-collection-calendar)
+ (evil-collection-calendar-setup))"
(interactive)
(dolist (mode evil-collection-mode-list)
(let ((m mode)
@@ -122,8 +122,8 @@ instance:
reqs (cdr mode)))
(dolist (req reqs)
(with-eval-after-load req
- (require (intern (concat "evil-" (symbol-name m))))
- (funcall (intern (concat "evil-" (symbol-name m) "-setup"))))))))
+ (require (intern (concat "evil-collection-" (symbol-name m))))
+ (funcall (intern (concat "evil-collection-" (symbol-name m) "-setup"))))))))
(provide 'evil-collection)
;;; evil-collection.el ends here