vscode/extensions/vb/language-configuration.json
2017-10-11 17:28:10 +02:00

30 lines
396 B
JSON

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