vscode/extensions/vb/language-configuration.json
2020-01-09 10:34:43 +01:00

31 lines
439 B
JSON

{
"comments": {
"lineComment": "'"
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"],
["<", ">"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
{ "open": "\"", "close": "\"", "notIn": ["string"] }
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["<", ">"]
],
"folding": {
"markers": {
"start": "^\\s*#Region\\b",
"end": "^\\s*#End Region\\b"
}
}
}