vscode/extensions/ini/properties.language-configu...

25 lines
357 B
JSON
Raw Normal View History

2015-11-13 21:39:38 +08:00
{
"comments": {
"lineComment": "#",
"blockComment": [ "#", " " ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
2016-04-22 04:37:38 +08:00
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
{ "open": "\"", "close": "\"", "notIn": ["string"] }
2016-04-22 04:37:38 +08:00
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
2015-11-13 21:39:38 +08:00
]
}