symboscript-vs/language-configuration.json

32 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": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["`", "`"]
]
}