diff options
| author | Stefan Monnier <monnier@iro.umontreal.ca> | 2023-07-01 16:19:51 -0400 |
|---|---|---|
| committer | Axel Forsman <axel@axelf.se> | 2023-08-07 19:24:48 +0200 |
| commit | 6e30037fdc6a275d78d6b82d89bd8e47bcf4d4e3 (patch) | |
| tree | 797104f39924d9b6ba894e491bb810ca82193964 /evil-jumps.el | |
| parent | 27d81ad406d2d3e07591b927357d2354ef5b5c65 (diff) | |
Remove redundant `:group` args
In the absence of `:group`, `defcustom` and `defface` default to
the group that was last defined in the same file.
* evil-jumps.el: Remove redundant `:group` args.
Diffstat (limited to 'evil-jumps.el')
| -rw-r--r-- | evil-jumps.el | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/evil-jumps.el b/evil-jumps.el index 93bf4cb..2fadb8b 100644 --- a/evil-jumps.el +++ b/evil-jumps.el @@ -38,28 +38,23 @@ (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." - :type 'boolean - :group 'evil-jumps) + :type 'boolean) (defcustom evil-jumps-max-length 100 "The maximum number of jumps to keep track of." - :type 'integer - :group 'evil-jumps) + :type 'integer) (defcustom evil-jumps-pre-jump-hook nil "Hooks to run just before jumping to a location in the jump list." - :type 'hook - :group 'evil-jumps) + :type 'hook) (defcustom evil-jumps-post-jump-hook nil "Hooks to run just after jumping to a location in the jump list." - :type 'hook - :group 'evil-jumps) + :type 'hook) (defcustom evil-jumps-ignored-file-patterns '("COMMIT_EDITMSG$" "TAGS$") "List of regexps to exclude file path from inclusion in the jump list." - :type '(repeat string) - :group 'evil-jumps) + :type '(repeat string)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
