notes/.vscode/extensions/octref.vetur-0.34.1/languages/vue-sugarss-language-configuration.json
2021-11-05 11:26:45 -07:00

25 lines
No EOL
520 B
JSON

{
"comments": {
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
"blockComment": [ "/*", "*/" ]
},
// symbols used as brackets
"brackets": [
["[", "]"],
["(", ")"]
],
// symbols that are auto closed when typing
"autoClosingPairs": [
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
// symbols that that can be used to surround a selection
"surroundingPairs": [
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
]
}