From 5aa037e4a0cf808dabe67a943c5baf2da3022d04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Fern=C3=A1ndez=20G=C3=B3mez?= Date: Mon, 16 Mar 2026 23:48:20 +0100 Subject: [PATCH] Disable the `tilt` LSP by default for "Starlark" files (#51709) This matches how the `buck2-lsp` works for that extension. Fixes https://github.com/zaucy/zed-starlark/issues/18 Before you mark this PR as ready for review, make sure that you have: - [ ] (n/a) Added a solid test coverage and/or screenshots from doing manual testing - [x] Done a self-review taking into account security and performance aspects - [x] Aligned any UI changes with the [UI checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist) Release Notes: - N/A --- assets/settings/default.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/settings/default.json b/assets/settings/default.json index 74ba9e6d52158ea63bab9c6200567b27286aa1da..5c45194dfe8ab3be37c2a70543b3760ea2127c3a 100644 --- a/assets/settings/default.json +++ b/assets/settings/default.json @@ -2168,7 +2168,7 @@ }, }, "Starlark": { - "language_servers": ["starpls", "!buck2-lsp", "..."], + "language_servers": ["starpls", "!buck2-lsp", "!tilt", "..."], }, "Svelte": { "language_servers": ["svelte-language-server", "..."],