mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-12-23 08:47:50 +00:00
46 lines
687 B
JSON
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": [
|
|
["[", "]"],
|
|
["{", "}"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["*", "*"],
|
|
["_", "_"],
|
|
["`", "`"],
|
|
["$", "$"]
|
|
]
|
|
}
|