diff options
Diffstat (limited to 'runtime/queries/cmake')
-rw-r--r-- | runtime/queries/cmake/indents.scm | 10 | ||||
-rw-r--r-- | runtime/queries/cmake/indents.toml | 12 |
2 files changed, 10 insertions, 12 deletions
diff --git a/runtime/queries/cmake/indents.scm b/runtime/queries/cmake/indents.scm new file mode 100644 index 00000000..199b1031 --- /dev/null +++ b/runtime/queries/cmake/indents.scm @@ -0,0 +1,10 @@ +[ + (if_condition) + (foreach_loop) + (while_loop) + (function_def) + (macro_def) + (normal_command) +] @indent + +")" @outdent diff --git a/runtime/queries/cmake/indents.toml b/runtime/queries/cmake/indents.toml deleted file mode 100644 index 8b886a4f..00000000 --- a/runtime/queries/cmake/indents.toml +++ /dev/null @@ -1,12 +0,0 @@ -indent = [ - "if_condition", - "foreach_loop", - "while_loop", - "function_def", - "macro_def", - "normal_command", -] - -outdent = [ - ")" -] |