From 27b12460fc52540abc9101565ce831da9cd859fc Mon Sep 17 00:00:00 2001 From: James Nguyen Date: Sat, 6 Jan 2018 11:58:09 -0800 Subject: [PATCH] Add a more explicit message when checking evil-want-integration --- evil-collection.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/evil-collection.el b/evil-collection.el index 8b45ba6..8b6526b 100644 --- a/evil-collection.el +++ b/evil-collection.el @@ -36,8 +36,9 @@ (require 'evil) (if (featurep 'evil-integration) - (message - "Make sure to set ~evil-want-integration~ to nil before loading evil or evil-collection.") + (if evil-want-integration + (message "Make sure to set `evil-want-integration' to nil before loading evil or evil-collection.") + (message "`evil-want-integration' was set to nil but not before loading evil.")) (require 'evil-collection-integration)) (defgroup evil-collection nil