Path: blob/main/extensions/julia/language-configuration.json
3290 views
{1"comments": {2"lineComment": "#",3"blockComment": [ "#=", "=#" ]4},5"brackets": [6["{", "}"],7["[", "]"],8["(", ")"]9],10"autoClosingPairs": [11["{", "}"],12["[", "]"],13["(", ")"],14["`", "`"],15{ "open": "\"", "close": "\"", "notIn": ["string", "comment"] }16],17"surroundingPairs": [18["{", "}"],19["[", "]"],20["(", ")"],21["\"", "\""],22["`", "`"]23],24"folding": {25"markers": {26"start": "^\\s*#region",27"end": "^\\s*#endregion"28}29},30"indentationRules": {31"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[^\\]]*)|(?:[^\\[]*\\].*)$).*$",32"decreaseIndentPattern": "^\\s*(end|else|elseif|catch|finally)\\b.*$"33}34}353637