Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/julia/language-configuration.json
3290 views
1
{
2
"comments": {
3
"lineComment": "#",
4
"blockComment": [ "#=", "=#" ]
5
},
6
"brackets": [
7
["{", "}"],
8
["[", "]"],
9
["(", ")"]
10
],
11
"autoClosingPairs": [
12
["{", "}"],
13
["[", "]"],
14
["(", ")"],
15
["`", "`"],
16
{ "open": "\"", "close": "\"", "notIn": ["string", "comment"] }
17
],
18
"surroundingPairs": [
19
["{", "}"],
20
["[", "]"],
21
["(", ")"],
22
["\"", "\""],
23
["`", "`"]
24
],
25
"folding": {
26
"markers": {
27
"start": "^\\s*#region",
28
"end": "^\\s*#endregion"
29
}
30
},
31
"indentationRules": {
32
"increaseIndentPattern": "^(\\s*|.*=\\s*|.*@\\w*\\s*)[\\w\\s]*(?:[\"'`][^\"'`]*[\"'`])*[\\w\\s]*\\b(if|while|for|function|macro|(mutable\\s+)?struct|abstract\\s+type|primitive\\s+type|let|quote|try|begin|.*\\)\\s*do|else|elseif|catch|finally)\\b(?!(?:.*\\bend\\b[^\\]]*)|(?:[^\\[]*\\].*)$).*$",
33
"decreaseIndentPattern": "^\\s*(end|else|elseif|catch|finally)\\b.*$"
34
}
35
}
36
37