Skip to content

Commit 16317d7

Browse files
authored
fix: evil-snipe-scope :type
The `(const ...)` type in choice clause should be written without the quote mark. See tab-first-completion for example. This makes Emacs 29's new `setopt` happy.
1 parent c2108d3 commit 16317d7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

evil-snipe.el

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ See `evil-snipe-spillover-scope' to fall back to another scope if the first
9292
snipe yields no matches."
9393
:group 'evil-snipe
9494
:type '(choice
95-
(const :tag "Forward line" 'line)
96-
(const :tag "Forward buffer" 'buffer)
97-
(const :tag "Forward visible buffer" 'visible)
98-
(const :tag "Whole line" 'whole-line)
99-
(const :tag "Whole buffer" 'whole-buffer)
100-
(const :tag "Whole visible buffer" 'whole-visible)))
95+
(const :tag "Forward line" line)
96+
(const :tag "Forward buffer" buffer)
97+
(const :tag "Forward visible buffer" visible)
98+
(const :tag "Whole line" whole-line)
99+
(const :tag "Whole buffer" whole-buffer)
100+
(const :tag "Whole visible buffer" whole-visible)))
101101

102102
(defcustom evil-snipe-repeat-scope nil
103103
"Dictates the scope of repeat searches.

0 commit comments

Comments
 (0)