vscode/extensions/ini/ini.language-configuration.json

25 lines
330 B
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"comments": {
2016-10-18 07:16:52 +00:00
"lineComment": ";",
"blockComment": [ ";", " " ]
2015-11-13 13:39:38 +00:00
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
2016-04-21 20:37:38 +00:00
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
2015-11-13 13:39:38 +00:00
]
}