Files
vscode/extensions/toml/language-configuration.json
Sardorbek 0469b0089e add toml fixes: #51704 (#59089)
* add toml fixes: #51704

* add thirdparty notices
2018-09-21 15:13:38 -07:00

26 lines
347 B
JSON

{
"comments": {
"lineComment": "#",
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["\"\"\"", "\"\"\""]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["\"\"\"", "\"\"\""]
]
}