mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
33 lines
No EOL
554 B
JSON
33 lines
No EOL
554 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "#",
|
|
"blockComment": [ "<#", "#>" ]
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
{ "open": "\"", "close": "\"", "notIn": ["string"]},
|
|
{ "open": "'", "close": "'", "notIn": ["string", "comment"]},
|
|
["/**", " */"],
|
|
["<#", "#>"]
|
|
],
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"]
|
|
],
|
|
"folding": {
|
|
"markers": {
|
|
"start": "^\\s*#region\\b",
|
|
"end": "^\\s*#endregion\\b"
|
|
}
|
|
}
|
|
} |