aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/lua/indents.toml
diff options
context:
space:
mode:
authoroberblastmeister2021-09-01 15:54:21 +0000
committerGitHub2021-09-01 15:54:21 +0000
commitae3f9366118bae9775b5229b817d1131c84cfc96 (patch)
tree15f7e4253e293de20c943e51c87b6da7d545b1da /runtime/queries/lua/indents.toml
parent31f1455c71457fbd68b2a618f709b68c8de352b8 (diff)
Lua support (#665)
* added submodule * small changes * updated some stuff * remove * shallow clone * correct indent * shallow * ok * highlights * proper captures
Diffstat (limited to 'runtime/queries/lua/indents.toml')
-rw-r--r--runtime/queries/lua/indents.toml24
1 files changed, 24 insertions, 0 deletions
diff --git a/runtime/queries/lua/indents.toml b/runtime/queries/lua/indents.toml
new file mode 100644
index 00000000..df1a9752
--- /dev/null
+++ b/runtime/queries/lua/indents.toml
@@ -0,0 +1,24 @@
+indent = [
+ "function_definition",
+ "variable_declaration",
+ "local_variable_declaration",
+ "field",
+ "local_function",
+ "function",
+ "if_statement",
+ "for_statement",
+ "for_in_statement",
+ "repeat_statement",
+ "return_statement",
+ "while_statement",
+ "table",
+ "arguments",
+ "do_statement",
+]
+
+oudent = [
+ "end",
+ "until",
+ "}",
+ ")",
+]