Skip to content

Commit 02fdc6d

Browse files
committed
fix: boolean config
1 parent a386875 commit 02fdc6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lsp-shader.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ This is only for development use."
5353

5454
(defcustom lsp-shader-completion-word t
5555
"Non-nil to enable word completion."
56-
:type 'string
56+
:type 'boolean
5757
:group 'lsp-shader)
5858

5959
(defun lsp-shader--cls-download-server (_client callback error-callback update?)
@@ -78,7 +78,7 @@ Will update if UPDATE? is t"
7878
(list "shader-ls" "--stdio")))
7979

8080
(lsp-register-custom-settings
81-
`(("ShaderLS.CompletionWord" lsp-shader-completion-word)))
81+
`(("ShaderLS.CompletionWord" lsp-shader-completion-word t)))
8282

8383
(lsp-register-client
8484
(make-lsp-client

0 commit comments

Comments
 (0)