vscode/extensions/clojure/language-configuration.json
João Moreno 1f1ed78f7d
Use ;; instead of ; for line comments (#115036)
LISPs in general and Clojure in particular by convention uses double semicolons
for regular line comments. Single semicolons are reserved for trailing comments
at the end of a line, and are treated (aligned) differently in some editors,
notably Emacs.

Co-authored-by: Arne Brasseur <arne@arnebrasseur.net>
2021-01-26 05:01:49 -08:00

26 lines
348 B
JSON

{
"comments": {
"lineComment": ";;"
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
{ "open": "\"", "close": "\"", "notIn": ["string"] }
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""]
],
"folding": {
"offSide": true
}
}