language-configuration.json 482 字节
Newer Older
E
Erich Gamma 已提交
1 2 3 4 5 6 7 8 9
{
	"comments": {
		"lineComment": "//",
		"blockComment": [ "/*", "*/" ]
	},
	"brackets": [
		["{", "}"],
		["[", "]"],
		["(", ")"]
10 11 12 13 14
	],
	"autoClosingPairs": [
		["{", "}"],
		["[", "]"],
		["(", ")"],
15 16 17
		{ "open": "\"", "close": "\"", "notIn": ["string"] },
		{ "open": "'", "close": "'", "notIn": ["string"] },
		{ "open": "`", "close": "`", "notIn": ["string"] }
18 19 20 21 22 23 24 25
	],
	"surroundingPairs": [
		["{", "}"],
		["[", "]"],
		["(", ")"],
		["\"", "\""],
		["'", "'"],
		["`", "`"]
E
Erich Gamma 已提交
26
	]
27
}