branch: elpa/evil-lisp-state
commit 7c9c56adb82d30c03c04c4a421b3cd9a994acd6f
Author: syl20bnr <[email protected]>
Commit: syl20bnr <[email protected]>
Set sp-navigate-consider-symbols to nil
Use regular `w` to jump from symbol to symbol
---
evil-lisp-state.el | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/evil-lisp-state.el b/evil-lisp-state.el
index 377cb4f47e..fe8ce38864 100644
--- a/evil-lisp-state.el
+++ b/evil-lisp-state.el
@@ -50,7 +50,9 @@
:enable (motion)
:cursor (bar . 2)
;; force smartparens mode
- (if (evil-lisp-state-p) (smartparens-mode)))
+ (progn
+ (if (evil-lisp-state-p) (smartparens-mode))
+ (setq sp-navigate-consider-symbols nil)))
(defgroup evil-lisp-state nil
"Evil lisp state."