aqua-vscode/language-configuration.json

22 lines
348 B
JSON
Raw Normal View History

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