From c1ab43173befa2c14a83f7b70c9d7264a5e76163 Mon Sep 17 00:00:00 2001 From: Vitaly Slobodin Date: Fri, 18 Oct 2024 17:12:58 +0200 Subject: [PATCH] fix: rename `code_actions_kind` to `code_action_kinds` The Zed extension manifest does not have field `code_action_kinds` for specifying known code action kinds. This field should be named `code_action_kinds`. See the Zed's extension manifest by using the link below: https://github.com/zed-industries/zed/blob/main/crates/extension/src/extension_manifest.rs#L116 --- extension.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension.toml b/extension.toml index 123f0c3..9c776a3 100644 --- a/extension.toml +++ b/extension.toml @@ -7,7 +7,7 @@ schema_version = 1 version = "0.1.3" [language_servers.biome] -code_actions_kind = ["quickfix"] +code_action_kinds = ["quickfix"] language = "JavaScript" languages = ["JavaScript", "JSX", "TypeScript", "TSX", "Vue.js", "Astro", "Svelte", "JSON", "JSONC", "CSS", "GraphQL"] name = "Biome Language Server"