summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--evil-org.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/evil-org.el b/evil-org.el
index 9bd1983..4dc76d5 100644
--- a/evil-org.el
+++ b/evil-org.el
@@ -66,10 +66,9 @@
:group 'evil-org)
(defcustom evil-org-key-theme
- (if (and (boundp 'evil-disable-insert-state-bindings)
- (evil-disable-insert-state-bindings))
+ (if (bound-and-true-p evil-disable-insert-state-bindings)
'(textobjects navigation additional)
- '(textobjects navigation insert additional))
+ '(textobjects navigation insert additional))
"Which key themes to enable.
If you use this variable, you should call `evil-org-set-key-theme' with zero
arguments."