vscode/extensions/ini/ini.language-configuration.json
2016-10-18 16:16:52 +09:00

25 lines
330 B
JSON

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