Skip to content

Commit 3a952ca

Browse files
authored
Fix lsp-completion-default-behaviour const value (#4577)
1 parent 66739e5 commit 3a952ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lsp-completion.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ KEEP-LAST-RESULT if specified."
214214
(defcustom lsp-completion-default-behaviour :replace
215215
"Default behaviour of `InsertReplaceEdit'."
216216
:type '(choice
217-
(const :insert :tag "Default completion inserts")
218-
(const :replace :tag "Default completion replaces"))
217+
(const :tag "Default completion inserts" :insert)
218+
(const :tag "Default completion replaces" :replace))
219219
:group 'lsp-mode
220220
:package-version '(lsp-mode . "8.0.0"))
221221

0 commit comments

Comments
 (0)