From 54b2058b86836ace058cf60ffc20891d362a5862 Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Thu, 9 Jul 2026 16:49:53 +0200 Subject: [PATCH] chore: fix name and complete language configuration --- vscode-ext/language-configuration.json | 83 +++++++++++++++++++++++++ vscode-ext/language-configurations.json | 16 ----- 2 files changed, 83 insertions(+), 16 deletions(-) create mode 100644 vscode-ext/language-configuration.json delete mode 100644 vscode-ext/language-configurations.json diff --git a/vscode-ext/language-configuration.json b/vscode-ext/language-configuration.json new file mode 100644 index 0000000..756d556 --- /dev/null +++ b/vscode-ext/language-configuration.json @@ -0,0 +1,83 @@ +{ + "comments": { + "lineComment": { + "comment": "//", + }, + "blockComment": [ + "/*", + "*/" + ] + }, + "brackets": [ + [ + "{", + "}" + ], + [ + "[", + "]" + ], + [ + "(", + ")" + ] + ], + "autoClosingPairs": [ + { + "open": "{", + "close": "}" + }, + { + "open": "[", + "close": "]" + }, + { + "open": "(", + "close": ")" + }, + { + "open": "'", + "close": "'", + "notIn": [ + "string", + "comment" + ] + }, + { + "open": "\"", + "close": "\"", + "notIn": [ + "string" + ] + }, + { + "open": "/**", + "close": " */", + "notIn": [ + "string" + ] + } + ], + "surroundingPairs": [ + [ + "{", + "}" + ], + [ + "[", + "]" + ], + [ + "(", + ")" + ], + [ + "'", + "'" + ], + [ + "\"", + "\"" + ] + ] +} \ No newline at end of file diff --git a/vscode-ext/language-configurations.json b/vscode-ext/language-configurations.json deleted file mode 100644 index 6695a6f..0000000 --- a/vscode-ext/language-configurations.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "brackets": [ - ["{", "}"], - ["[", "]"] - ], - "autoClosingPairs": [ - { "open": "{", "close": "}" }, - { "open": "[", "close": "]" }, - { "open": "(", "close": ")" } - ], - "surroundingPairs": [ - ["{", "}"], - ["[", "]"], - ["(", ")"] - ] -} \ No newline at end of file