mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 06:38:23 +00:00
32 lines
562 B
JSON
32 lines
562 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "#"
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
|
{ "open": "'", "close": "'", "notIn": ["string"] },
|
|
{ "open": "`", "close": "`", "notIn": ["string"] }
|
|
],
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"],
|
|
["`", "`"]
|
|
],
|
|
"folding": {
|
|
"markers": {
|
|
"start": "^\\s*#\\s*#?region\\b.*",
|
|
"end": "^\\s*#\\s*#?endregion\\b.*"
|
|
}
|
|
}
|
|
}
|