mirror of https://git.tuxpa.in/a/code-server.git
32 lines
477 B
JSON
32 lines
477 B
JSON
{
|
|||
"comments": {
|
|||
"lineComment": "#",
|
|||
"blockComment": [ "#=", "=#" ]
|
|||
},
|
|||
"brackets": [
|
|||
["{", "}"],
|
|||
["[", "]"],
|
|||
["(", ")"]
|
|||
],
|
|||
"autoClosingPairs": [
|
|||
["{", "}"],
|
|||
["[", "]"],
|
|||
["(", ")"],
|
|||
["`", "`"],
|
|||
{ "open": "\"", "close": "\"", "notIn": ["string", "comment"] }
|
|||
],
|
|||
"surroundingPairs": [
|
|||
["{", "}"],
|
|||
["[", "]"],
|
|||
["(", ")"],
|
|||
["\"", "\""],
|
|||
["`", "`"]
|
|||
],
|
|||
"folding": {
|
|||
"markers": {
|
|||
"start": "^\\s*#region",
|
|||
"end": "^\\s*#endregion"
|
|||
}
|
|||
}
|
|||
}
|