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