aqua-vscode/language-configuration.json

19 lines
310 B
JSON
Raw Normal View History

2021-05-20 19:05:53 +03:00
{
"comments": {
"lineComment": "--",
},
"brackets": [
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["[", "]"],
["(", ")"],
["\"", "\""],
],
"surroundingPairs": [
["[", "]"],
["(", ")"],
["\"", "\""],
]
}