vscode-texinfo/language-config.json

22 lines
344 B
JSON
Raw Normal View History

2020-10-15 20:16:13 +00:00
{
"comments": {
"lineComment": "@c"
},
"brackets": [
["{", "}"],
["[", "]"],
2020-10-17 13:41:03 +00:00
["(", ")"]
2020-10-15 20:16:13 +00:00
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["`", "'"]
]
}