diff options
| author | Tom Dalziel <tom_dl@hotmail.com> | 2022-10-13 12:14:40 +0100 |
|---|---|---|
| committer | Tom Dalziel <33435574+tomdl89@users.noreply.github.com> | 2022-10-13 14:26:39 +0200 |
| commit | cddc4a67579daafcf718afd8b757b95d77e01198 (patch) | |
| tree | 746ff8cd66746777f799791b730e99ebada2b12c /evil-jumps.el | |
| parent | 298273fb8dcf5f75e9f00d8b9d8e7fcdd8f011e9 (diff) | |
Shorten doc-strings
Diffstat (limited to 'evil-jumps.el')
| -rw-r--r-- | evil-jumps.el | 7 |
1 files changed, 4 insertions, 3 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.") |
