vscode/extensions/vb/language-configuration.json

31 lines
439 B
JSON
Raw Normal View History

2015-11-13 14:39:38 +01:00
{
"comments": {
2015-12-09 11:05:30 +01:00
"lineComment": "'"
2015-11-13 14:39:38 +01:00
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"],
["<", ">"]
2016-04-21 23:05:07 +02:00
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
{ "open": "\"", "close": "\"", "notIn": ["string"] }
2016-04-21 23:05:07 +02:00
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["<", ">"]
],
"folding": {
"markers": {
2017-10-12 16:55:08 +02:00
"start": "^\\s*#Region\\b",
"end": "^\\s*#End Region\\b"
}
}
}