Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/clojure/language-configuration.json
3309 views
1
{
2
"comments": {
3
"lineComment": ";;"
4
},
5
"brackets": [
6
["{", "}"],
7
["[", "]"],
8
["(", ")"]
9
],
10
"autoClosingPairs": [
11
["{", "}"],
12
["[", "]"],
13
["(", ")"],
14
{ "open": "\"", "close": "\"", "notIn": ["string"] }
15
],
16
"surroundingPairs": [
17
["{", "}"],
18
["[", "]"],
19
["(", ")"],
20
["\"", "\""]
21
],
22
"folding": {
23
"offSide": true
24
}
25
}
26
27