From da0fc7340d10962466b51c1f3e1f6c14614152a8 Mon Sep 17 00:00:00 2001 From: Paul <127955132+Paul-16098@users.noreply.github.com> Date: Sun, 25 Jan 2026 09:16:05 +0800 Subject: [PATCH] =?UTF-8?q?feat(language-configuration):=20add=20`<>`=20?= =?UTF-8?q?=E5=88=B0=20`autoClosingPairs`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- language-configuration.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/language-configuration.json b/language-configuration.json index 8adce1e..193a663 100644 --- a/language-configuration.json +++ b/language-configuration.json @@ -17,7 +17,9 @@ ["(", ")"] ], // symbols that are auto closed when typing + // https://code.visualstudio.com/api/language-extensions/language-configuration-guide#autoclosing "autoClosingPairs": [ + { "open": "<", "close": ">" }, { "open": "{", "close": "}" }, { "open": "[", "close": "]" }, { "open": "(", "close": ")" },