From 0009cb18e71e3109dc203a214564f2adaeb708a3 Mon Sep 17 00:00:00 2001 From: Aleksandr Chupakhin Date: Tue, 25 Feb 2025 16:19:58 +0300 Subject: [PATCH 1/2] Fix xml default config --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c3723cea..71743f02 100644 --- a/package.json +++ b/package.json @@ -265,7 +265,8 @@ "codeBlocks.npmPackageName": "@tree-sitter-grammars/tree-sitter-yaml" }, "[xml]": { - "codeBlocks.npmPackageName": "@tree-sitter-grammars/tree-sitter-xml" + "codeBlocks.npmPackageName": "@tree-sitter-grammars/tree-sitter-xml", + "codeBlocks.subdirectory": "xml" }, "[markdown]": { "codeBlocks.npmPackageName": "@tree-sitter-grammars/tree-sitter-markdown" From 0d24380753a004d5d4d3af56a832665fdb8d0445 Mon Sep 17 00:00:00 2001 From: Aleksandr Chupakhin Date: Tue, 25 Feb 2025 16:20:30 +0300 Subject: [PATCH 2/2] Add toml default config --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 71743f02..d9c00515 100644 --- a/package.json +++ b/package.json @@ -264,6 +264,9 @@ "[yaml]": { "codeBlocks.npmPackageName": "@tree-sitter-grammars/tree-sitter-yaml" }, + "[toml]": { + "codeBlocks.npmPackageName": "@tree-sitter-grammars/tree-sitter-toml" + }, "[xml]": { "codeBlocks.npmPackageName": "@tree-sitter-grammars/tree-sitter-xml", "codeBlocks.subdirectory": "xml"