Skip to content

Commit bf87b6e

Browse files
authored
fix(lsp-zig.el): Remove unused config (#4351)
1 parent 016e6b8 commit bf87b6e

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

Diff for: clients/lsp-zig.el

+10-3
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,14 @@ e.g. `/path/to/zig/lib/zig`, used to analyze std library imports."
173173
:group 'lsp-zig
174174
:type 'string)
175175

176+
(defcustom lsp-zig-zig-exe-path ""
177+
" Zig executable path.
178+
e.g. /path/to/zig/zig, used to run the custom build runner. If null, zig is
179+
looked up in PATH. Will be used to infer the zig standard library path if none
180+
is provided."
181+
:group 'lsp-zig
182+
:type 'string)
183+
176184
(defcustom lsp-zig-build-runner-path ""
177185
"Path to the `build_runner.zig` file provided by zls.
178186
null is equivalent to `${executable_directory}/build_runner.zig`."
@@ -283,9 +291,7 @@ and not the global storage."
283291
;;; Core
284292

285293
(lsp-register-custom-settings
286-
'(("zls.trace.server" lsp-zig-trace-server)
287-
("zls.path" lsp-zig-zls-executable)
288-
("zls.enable_snippets" lsp-zls-enable-snippets t)
294+
'(("zls.enable_snippets" lsp-zls-enable-snippets t)
289295
("zls.enable_argument_placeholders" lsp-zig-enable-argument-placeholders t)
290296
("zls.enable_build_on_save" lsp-zig-enable-build-on-save t)
291297
("zls.build_on_save_step" lsp-zig-build-on-save-step)
@@ -308,6 +314,7 @@ and not the global storage."
308314
("zls.replay_session_path" lsp-zig-replay-session-path)
309315
("zls.builtin_path" lsp-zig-builtin-path)
310316
("zls.zig_lib_path" lsp-zig-zig-lib-path)
317+
("zls.zig_exe_path" lsp-zig-zig-exe-path)
311318
("zls.build_runner_path" lsp-zig-build-runner-path)
312319
("zls.global_cache_path" lsp-zig-global-cache-path)
313320
("zls.build_runner_global_cache_path" lsp-zig-build-runner-global-cache-path)

0 commit comments

Comments
 (0)