From 31b3dbe0d76be4ad899a43e8f7bd8883fdbae425 Mon Sep 17 00:00:00 2001 From: James Nguyen Date: Wed, 9 Oct 2019 20:10:50 -0700 Subject: [PATCH] Add lispy to list of modes to autoload --- evil-collection.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evil-collection.el b/evil-collection.el index 3d71413..441d1ce 100644 --- a/evil-collection.el +++ b/evil-collection.el @@ -244,7 +244,7 @@ through removing their entry from `evil-collection-mode-list'." either target mode symbols or lists which `car' is the mode symbol and `cdr' the packages to register.") -(dolist (mode evil-collection--supported-modes) +(dolist (mode (append evil-collection--supported-modes '(lispy))) (let ((ec-mode-name (if (listp mode) (car mode) mode))) (autoload (intern (format "evil-collection-%s-setup" ec-mode-name))