vscode/extensions/vb/language-configuration.json

24 lines
298 B
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"comments": {
2015-12-09 10:05:30 +00:00
"lineComment": "'"
2015-11-13 13:39:38 +00:00
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"],
["<", ">"]
2016-04-21 21:05:07 +00:00
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["<", ">"]
2015-11-13 13:39:38 +00:00
]
}