aqua-vscode/language-configuration.json

21 lines
348 B
JSON
Raw Normal View History

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