vscode-texinfo/language-configuration.json

22 lines
349 B
JSON
Raw Normal View History

2020-10-15 20:16:13 +00:00
{
"comments": {
2020-11-02 21:14:05 +00:00
"lineComment": "@c",
2020-10-15 20:16:13 +00:00
},
"brackets": [
["{", "}"],
["[", "]"],
2020-11-02 21:14:05 +00:00
["(", ")"],
2020-10-15 20:16:13 +00:00
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
2020-11-02 21:14:05 +00:00
["(", ")"],
2020-10-15 20:16:13 +00:00
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
2020-11-02 21:14:05 +00:00
["`", "'"],
],
2020-10-15 20:16:13 +00:00
}