microsoft_vscode/extensions/lua/language-configuration.json
2017-07-29 13:56:42 -07:00

30 lines
544 B
JSON

{
"comments": {
"lineComment": "--",
"blockComment": [ "--[[", "]]" ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
"indentationRules": {
"increaseIndentPattern": "^\\s*(((?:local\\s+)?function|else|elseif|for|if|until|while)|(.*\\sdo\\b))\\b[^\\{;]*$",
"decreaseIndentPattern": "^\\s*((end|else|elseif)|[}\\]]\b)"
}
}