vscode-texinfo/language-configuration.json

27 lines
609 B
JSON
Raw Permalink 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-04-21 09:29:53 +00:00
"lineComment": "@c",
2020-10-15 20:16:13 +00:00
},
"brackets": [
["{", "}"],
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
2021-04-21 09:29:53 +00:00
["(", ")"],
2020-10-15 20:16:13 +00:00
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
2021-04-21 09:29:53 +00:00
["`", "'"],
],
2020-10-15 20:16:13 +00:00
}