From 3f3883f8f6f8326bc2055c7873ef24776b4f12fe Mon Sep 17 00:00:00 2001 From: Thorsten Ball Date: Mon, 13 May 2024 14:38:14 +0200 Subject: [PATCH] Fix Vue.js language server not starting (zed-industries/zed#11743) This fixes zed-industries/zed#10871. The introduction of zed-industries/zed#11412 broke Vue.js language support, since it made Zed rely more heavily on correct language name -> language ID mappings, which the Vue.js extension didn't have. Release Notes: - N/A --- extension.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/extension.toml b/extension.toml index c8655b5..0312711 100644 --- a/extension.toml +++ b/extension.toml @@ -9,6 +9,7 @@ repository = "https://github.com/zed-industries/zed" [language_servers.vue-language-server] name = "Vue Language Server" language = "Vue.js" +language_ids = { "Vue.js" = "vue" } # REFACTOR is explicitly disabled, as vue-lsp does not adhere to LSP protocol for code actions with these - it # sends back a CodeAction with neither `command` nor `edits` fields set, which is against the spec. code_action_kinds = ["", "quickfix", "refactor.rewrite"]