vscode-texinfo/language-configuration.json

29 lines
644 B
JSON
Raw Normal View History

2021-03-22 16:19:48 +00:00
/**
* Copyright (C) 2020,2021 CismonX <admin@cismon.net>
*
* Copying and distribution of this file, with or without modification, are
* permitted in any medium without royalty, provided the copyright notice and
* this notice are preserved. This file is offered as-is, without any warranty.
*/
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
}