vscode/extensions/clojure/language-configuration.json

26 lines
348 B
JSON
Raw Normal View History

2024-11-15 06:29:18 +00:00
{
"comments": {
"lineComment": ";;"
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
{ "open": "\"", "close": "\"", "notIn": ["string"] }
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""]
],
"folding": {
"offSide": true
}
}