Files
kiss-vscode/Kiss.configuration.json
2023-11-13 12:51:59 -07:00

32 lines
635 B
JSON

{
"comments": {
"lineComment": "//",
"blockComment": [ "/*", "*/" ]
},
"brackets": [
["(", ")"],
["[", "]"],
["{", "}"],
["#{", "}#"],
["#|", "|#"]
],
"autoClosingPairs": [
["(", ")"],
["[", "]"],
["\"", "\""],
["{", "}"],
["#{", "}#"],
["#|", "|#"],
["#\"", "\"#"],
["##\"", "\"##"],
["###\"", "\"###"],
["####\"", "\"####"],
["#####\"", "\"#####"]
],
"surroundingPairs": [
["(", ")"],
["[", "]"],
["\"", "\""],
["{", "}"]
]
}