tinymist/editors/vscode/syntaxes/language-configuration.json
2024-10-22 23:02:52 +08:00

46 lines
687 B
JSON

{
"comments": {
"lineComment": "//",
"blockComment": ["/*", "*/"]
},
"brackets": [
["[", "]"],
["{", "}"],
["(", ")"]
],
"autoClosingPairs": [
{
"open": "[",
"close": "]"
},
{
"open": "{",
"close": "}"
},
{
"open": "(",
"close": ")"
},
{
"open": "\"",
"close": "\"",
"notIn": ["string"]
},
{
"open": "$",
"close": "$",
"notIn": ["string"]
}
],
"autoCloseBefore": ";:.,=}])>$ \n\t",
"surroundingPairs": [
["[", "]"],
["{", "}"],
["(", ")"],
["\"", "\""],
["*", "*"],
["_", "_"],
["`", "`"],
["$", "$"]
]
}