更新语言配置,添加尖括号的块注释和自动闭合对
This commit is contained in:
parent
488057f903
commit
2545ddfb73
|
@ -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": {
|
||||
|
|
Loading…
Reference in New Issue