aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEivind Fonn <evfonn@gmail.com>2020-10-13 22:07:26 +0200
committerEivind Fonn <evfonn@gmail.com>2020-10-13 22:08:48 +0200
commitbd98a560288657e1ffb679877b14c8ad1f044eed (patch)
tree73a84b2607de6ed1a679a656faf90e665fd7a56b
parent70b85a68b8c1fbb02c1bc758837bfc802baf1f4b (diff)
Update docstrings for -search-module and -undo-system
-rw-r--r--evil-search.el4
-rw-r--r--evil-vars.el6
2 files changed, 8 insertions, 2 deletions
diff --git a/evil-search.el b/evil-search.el
index 546b206..8d5bc9f 100644
--- a/evil-search.el
+++ b/evil-search.el
@@ -58,7 +58,9 @@ search module is used."
;; this customization is here because it requires
;; the knowledge of `evil-select-search-mode'
(defcustom evil-search-module 'isearch
- "The search module to be used."
+ "The search module to be used. May be either `isearch', for
+Emacs' isearch module, or `evil-search', for Evil's own
+interactive search module."
:type '(radio (const :tag "Emacs built-in isearch." :value isearch)
(const :tag "Evil interactive search." :value evil-search))
:group 'evil
diff --git a/evil-vars.el b/evil-vars.el
index eab1f9b..630eb67 100644
--- a/evil-vars.el
+++ b/evil-vars.el
@@ -2001,7 +2001,11 @@ Customized via `evil-undo-system'.")
(error "Unknown undo system %s" system))))
(defcustom evil-undo-system nil
- "Undo system Evil should use."
+ "Undo system Evil should use. If equal to `undo-tree' or
+`undo-fu', those packages must be installed. If equal to
+`undo-tree', `undo-tree-mode' must also be activated. If equal
+to `undo-redo' on Emacs 28 or later, Emacs' own undo system is
+used."
:type '(choice (const :tag "Vanilla undo" nil)
(const undo-redo)
(const undo-tree)