dotfiles/vscode/.vscode/extensions/tamasfe.even-better-toml-0.19.2/language-configuration.json
2024-07-19 18:31:54 -06:00

41 lines
484 B
JSON

{
"comments": {
"lineComment": "#"
},
"autoCloseBefore": ";:.,=}])> \n\t",
"brackets": [
[
"[",
"]"
]
],
"autoClosingPairs": [
{ "open": "\"", "close": "\"", "notIn": ["string"] },
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
{ "open": "[", "close": "]" },
{ "open": "{", "close": "}" }
],
"surroundingPairs": [
[
"\"",
"\""
],
[
"'",
"'"
],
[
"(",
")"
],
[
"[",
"]"
],
[
"{",
"}"
]
]
}