更新语言配置,添加尖括号的块注释和自动闭合对

This commit is contained in:
全卓 2024-12-18 11:56:15 +08:00
parent 488057f903
commit 2545ddfb73
1 changed files with 15 additions and 2 deletions

View File

@ -1,11 +1,12 @@
{
"comments": {
"blockComment": [
"#[=[",
"]=]"
"#[[",
"]]"
],
"lineComment": "#"
},
"brackets": [
[
"(",
@ -18,6 +19,10 @@
[
"{",
"}"
],
[
"<",
">"
]
],
"autoClosingPairs": [
@ -33,6 +38,10 @@
"open": "(",
"close": ")"
},
{
"open": "<",
"close": ">"
},
{
"open": "\"",
"close": "\"",
@ -58,6 +67,10 @@
[
"\"",
"\""
],
[
"<",
">"
]
],
"folding": {