diff options
author | Sebastian Neubauer | 2021-12-25 15:10:19 +0000 |
---|---|---|
committer | GitHub | 2021-12-25 15:10:19 +0000 |
commit | ec878e40114d8992c3ed1221f77271a4508d3cde (patch) | |
tree | 6dd361ff3d23026de8f7d67f28144a2d28ed4ad9 /runtime/queries/cmake/indents.toml | |
parent | 5d7b5db8ab284e0c2a41e6fbda08857f87406780 (diff) |
Add textobjects and indents to cmake (#1307)
Diffstat (limited to 'runtime/queries/cmake/indents.toml')
-rw-r--r-- | runtime/queries/cmake/indents.toml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/runtime/queries/cmake/indents.toml b/runtime/queries/cmake/indents.toml new file mode 100644 index 00000000..8b886a4f --- /dev/null +++ b/runtime/queries/cmake/indents.toml @@ -0,0 +1,12 @@ +indent = [ + "if_condition", + "foreach_loop", + "while_loop", + "function_def", + "macro_def", + "normal_command", +] + +outdent = [ + ")" +] |