mirror of https://github.com/helix-editor/helix
Add textobjects and indents to cmake (#1307)
parent
5d7b5db8ab
commit
ec878e4011
@ -0,0 +1,12 @@
|
|||||||
|
indent = [
|
||||||
|
"if_condition",
|
||||||
|
"foreach_loop",
|
||||||
|
"while_loop",
|
||||||
|
"function_def",
|
||||||
|
"macro_def",
|
||||||
|
"normal_command",
|
||||||
|
]
|
||||||
|
|
||||||
|
outdent = [
|
||||||
|
")"
|
||||||
|
]
|
@ -0,0 +1,3 @@
|
|||||||
|
(macro_def) @function.around
|
||||||
|
|
||||||
|
(argument) @parameter.inside
|
Loading…
Reference in New Issue