mirror of
https://github.com/SymboScript/symboscript-vs.git
synced 2024-11-05 21:33:58 +03:00
33 lines
630 B
JSON
33 lines
630 B
JSON
|
{
|
||
|
"comments": {
|
||
|
// symbol used for single line comment.
|
||
|
"lineComment": "#",
|
||
|
// symbols used for start and end a block comment.
|
||
|
"blockComment": ["#/", "/#"]
|
||
|
},
|
||
|
// symbols used as brackets
|
||
|
"brackets": [
|
||
|
["{", "}"],
|
||
|
["[", "]"],
|
||
|
["(", ")"]
|
||
|
],
|
||
|
// symbols that are auto closed when typing
|
||
|
"autoClosingPairs": [
|
||
|
["{", "}"],
|
||
|
["[", "]"],
|
||
|
["(", ")"],
|
||
|
["\"", "\""],
|
||
|
["'", "'"],
|
||
|
["`", "`"]
|
||
|
],
|
||
|
// symbols that can be used to surround a selection
|
||
|
"surroundingPairs": [
|
||
|
["{", "}"],
|
||
|
["[", "]"],
|
||
|
["(", ")"],
|
||
|
["\"", "\""],
|
||
|
["'", "'"],
|
||
|
["`", "`"]
|
||
|
]
|
||
|
}
|