summaryrefslogtreecommitdiff
path: root/readme.org
diff options
context:
space:
mode:
authorJames Nguyen <james@jojojames.com>2018-09-11 17:49:55 -0700
committerJames N <james@jojojames.com>2018-09-12 09:26:16 -0700
commitcad5ad3d665b2818dafc2fa360e27c0ecb3745f0 (patch)
tree648b511ad3c561810b7debb51ed50d981cbf9c20 /readme.org
parent0fd9807a9583d8e677fb1fe010497c0faa304683 (diff)
Change readme to account for evil-want-integration
Diffstat (limited to 'readme.org')
-rw-r--r--readme.org12
1 files changed, 9 insertions, 3 deletions
diff --git a/readme.org b/readme.org
index c459323..1f3dd96 100644
--- a/readme.org
+++ b/readme.org
@@ -48,12 +48,17 @@ more.
The list of supported modes is configured by ~~evil-collection-mode-list~~.
- ~evil-collection~ assumes ~evil-want-integration~ is set to nil before loading ~evil~ and ~evil-collection.~
+ ~evil-collection~ assumes ~evil-want-keybinding~ is set to nil
+ and ~evil-want-integration~ is set to t before loading ~evil~ and ~evil-collection.~
+
+ See https://github.com/emacs-evil/evil-collection/issues/60 and https://github.com/emacs-evil/evil/pull/1087
+ for more details.
For example:
#+begin_src emacs-lisp :tangle yes
-(setq evil-want-integration nil)
+(setq evil-want-integration t) ;; This is optional since it's already set to t by default.
+(setq evil-want-keybinding nil)
(require 'evil)
(when (require 'evil-collection nil t)
(evil-collection-init))
@@ -65,7 +70,8 @@ more.
(use-package evil
:ensure t
:init
- (setq evil-want-integration nil)
+ (setq evil-want-integration t) ;; This is optional since it's already set to t by default.
+ (setq evil-want-keybinding nil)
:config
(evil-mode 1))