vscode-texinfo/language-configuration.json

22 lines
344 B
JSON
Raw Normal View History

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