From 94b703e26473597d19a128821a5a3fb36d24347d Mon Sep 17 00:00:00 2001 From: James Nguyen Date: Sun, 20 Oct 2019 10:16:55 -0700 Subject: [PATCH] Move lispy to default modes (#116) --- evil-collection.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/evil-collection.el b/evil-collection.el index 7405779..9911aaa 100644 --- a/evil-collection.el +++ b/evil-collection.el @@ -179,6 +179,7 @@ through removing their entry from `evil-collection-mode-list'." ivy js2-mode leetcode + lispy log-edit log-view lsp-ui-imenu @@ -246,7 +247,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 (append evil-collection--supported-modes '(lispy))) +(dolist (mode evil-collection--supported-modes) (let ((ec-mode-name (if (listp mode) (car mode) mode))) (autoload (intern (format "evil-collection-%s-setup" ec-mode-name))