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