symboscript-vs/language-configuration.json

33 lines
630 B
JSON
Raw Normal View History

2023-12-29 12:32:43 +03:00
{
"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": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["`", "`"]
]
}