2016-05-21 15:39:12 +08:00
|
|
|
{
|
2016-05-24 01:38:31 +08:00
|
|
|
"comments": {
|
|
|
|
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
|
|
|
|
"blockComment": [
|
2016-11-09 06:14:36 +08:00
|
|
|
"<!--",
|
|
|
|
"-->"
|
2016-05-24 01:38:31 +08:00
|
|
|
]
|
|
|
|
},
|
|
|
|
// symbols used as brackets
|
|
|
|
"brackets": [
|
2023-06-08 04:05:01 +08:00
|
|
|
[
|
|
|
|
"{",
|
|
|
|
"}"
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"[",
|
|
|
|
"]"
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"(",
|
|
|
|
")"
|
|
|
|
]
|
2021-08-25 16:25:47 +08:00
|
|
|
],
|
2023-06-08 04:05:01 +08:00
|
|
|
"colorizedBracketPairs": [],
|
2016-06-20 17:42:55 +08:00
|
|
|
"autoClosingPairs": [
|
2017-06-08 05:53:54 +08:00
|
|
|
{
|
|
|
|
"open": "{",
|
|
|
|
"close": "}"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"open": "[",
|
|
|
|
"close": "]"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"open": "(",
|
|
|
|
"close": ")"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"open": "<",
|
|
|
|
"close": ">",
|
|
|
|
"notIn": [
|
|
|
|
"string"
|
|
|
|
]
|
2023-06-08 04:05:01 +08:00
|
|
|
},
|
2017-06-08 05:53:54 +08:00
|
|
|
],
|
|
|
|
"surroundingPairs": [
|
2023-06-08 04:05:01 +08:00
|
|
|
[
|
|
|
|
"(",
|
|
|
|
")"
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"[",
|
|
|
|
"]"
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"`",
|
|
|
|
"`"
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"_",
|
|
|
|
"_"
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"*",
|
|
|
|
"*"
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"{",
|
|
|
|
"}"
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"'",
|
|
|
|
"'"
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"\"",
|
|
|
|
"\""
|
2024-01-23 06:58:28 +08:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"<",
|
|
|
|
">"
|
2024-06-20 01:24:44 +08:00
|
|
|
],
|
|
|
|
[
|
|
|
|
"~",
|
|
|
|
"~"
|
2023-06-08 04:05:01 +08:00
|
|
|
]
|
2017-09-20 15:34:33 +08:00
|
|
|
],
|
|
|
|
"folding": {
|
2018-01-03 06:28:36 +08:00
|
|
|
"offSide": true,
|
|
|
|
"markers": {
|
|
|
|
"start": "^\\s*<!--\\s*#?region\\b.*-->",
|
|
|
|
"end": "^\\s*<!--\\s*#?endregion\\b.*-->"
|
|
|
|
}
|
2021-05-17 15:12:01 +08:00
|
|
|
},
|
2023-06-08 04:05:01 +08:00
|
|
|
"wordPattern": {
|
|
|
|
"pattern": "(\\p{Alphabetic}|\\p{Number}|\\p{Nonspacing_Mark})(((\\p{Alphabetic}|\\p{Number}|\\p{Nonspacing_Mark})|[_])?(\\p{Alphabetic}|\\p{Number}|\\p{Nonspacing_Mark}))*",
|
|
|
|
"flags": "ug"
|
|
|
|
},
|
2018-01-03 06:28:36 +08:00
|
|
|
}
|