Path: blob/main/extensions/lua/language-configuration.json
3309 views
{1"comments": {2"lineComment": "--",3"blockComment": [ "--[[", "]]" ]4},5"brackets": [6["{", "}"],7["[", "]"],8["(", ")"]9],10"autoClosingPairs": [11["{", "}"],12["[", "]"],13["(", ")"],14{ "open": "\"", "close": "\"", "notIn": ["string"] },15{ "open": "'", "close": "'", "notIn": ["string"] }16],17"surroundingPairs": [18["{", "}"],19["[", "]"],20["(", ")"],21["\"", "\""],22["'", "'"]23],24"indentationRules": {25"increaseIndentPattern": "^((?!(\\-\\-)).)*((\\b(else|function|then|do|repeat)\\b((?!\\b(end|until)\\b).)*)|(\\{\\s*))$",26"decreaseIndentPattern": "^\\s*((\\b(elseif|else|end|until)\\b)|(\\})|(\\)))"27}28}293031