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

24 lines
316 B
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"comments": {
"lineComment": "#",
"blockComment": [ "#", " " ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
2016-04-21 20:37:38 +00:00
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
2017-04-27 11:07:42 +00:00
["\"", "\""]
2016-04-21 20:37:38 +00:00
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
2015-11-13 13:39:38 +00:00
]
}