kylin-code/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 Permalink Normal View History

2022-06-14 14:37:10 +08:00
{
"comments": {
"lineComment": "'"
},
"brackets": [
["{", "}"],
["[", "]"],
2024-04-30 20:57:13 +08:00
["(", ")"]
2022-06-14 14:37:10 +08:00
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
{ "open": "\"", "close": "\"", "notIn": ["string"] }
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["<", ">"]
],
"folding": {
"markers": {
"start": "^\\s*#Region\\b",
"end": "^\\s*#End Region\\b"
}
}
}