aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--evil-jumps.el7
-rw-r--r--evil-vars.el2
2 files changed, 5 insertions, 4 deletions
diff --git a/evil-jumps.el b/evil-jumps.el
index de10b8d..6c0203c 100644
--- a/evil-jumps.el
+++ b/evil-jumps.el
@@ -36,7 +36,8 @@
:group 'evil)
(defcustom evil-jumps-cross-buffers t
- "When non-nil, the jump commands can cross borders between buffers, otherwise the jump commands act only within the current buffer."
+ "When non-nil, the jump commands can cross borders between buffers.
+Otherwise the jump commands act only within the current buffer."
:type 'boolean
:group 'evil-jumps)
@@ -56,7 +57,7 @@
:group 'evil-jumps)
(defcustom evil-jumps-ignored-file-patterns '("COMMIT_EDITMSG$" "TAGS$")
- "A list of pattern regexps to match on the file path to exclude from being included in the jump list."
+ "List of regexps to exclude file path from inclusion in the jump list."
:type '(repeat string)
:group 'evil-jumps)
@@ -73,7 +74,7 @@
(eval-when-compile (defvar evil--jumps-debug nil))
(defvar evil--jumps-buffer-targets "\\*\\(new\\|scratch\\)\\*"
- "Regexp to match against `buffer-name' to determine whether it's a valid jump target.")
+ "Regexp to determine if buffer with `buffer-name' is a valid jump target.")
(defvar evil--jumps-window-jumps (make-hash-table)
"Hashtable which stores all jumps on a per window basis.")
diff --git a/evil-vars.el b/evil-vars.el
index 9930390..ba12720 100644
--- a/evil-vars.el
+++ b/evil-vars.el
@@ -2116,7 +2116,7 @@ to `undo-redo', Evil uses commands natively available in Emacs 28."
(set-default sym value)))
(defcustom evil-visual-update-x-selection-p t
- "Whether to update the X PRIMARY selection with the current visual region automatically."
+ "Whether to update the X PRIMARY selection with the current visual region."
:type 'boolean
:group 'evil)