vscode/extensions/vb/language-configuration.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
425 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": [
["{", "}"],
["[", "]"],
["(", ")"],
{ "open": "\"", "close": "\"", "notIn": ["string"] }
2016-04-21 21:05:07 +00:00
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["<", ">"]
],
"folding": {
"markers": {
2017-10-12 14:55:08 +00:00
"start": "^\\s*#Region\\b",
"end": "^\\s*#End Region\\b"
}
}
}