mirror of https://github.com/helix-editor/helix
Fixed for grammar not being able to fetch.
Implementation of indent and textobjects querry for c3.pull/11521/head
parent
b39b3e5dd2
commit
1873b02c63
@ -0,0 +1,13 @@
|
|||||||
|
[
|
||||||
|
(func_definition)
|
||||||
|
(if_stmt)
|
||||||
|
(enum_declaration)
|
||||||
|
(for_stmt)
|
||||||
|
(while_stmt)
|
||||||
|
(case_stmt)
|
||||||
|
(macro_declaration)
|
||||||
|
] @indent
|
||||||
|
|
||||||
|
[
|
||||||
|
"}"
|
||||||
|
] @outdent
|
@ -0,0 +1,17 @@
|
|||||||
|
(func_definition
|
||||||
|
body: (_) @function.inside) @function.around
|
||||||
|
|
||||||
|
(struct_declaration
|
||||||
|
body: (_) @class.inside) @class.around
|
||||||
|
|
||||||
|
(enum_declaration
|
||||||
|
body: (_) @class.inside) @class.around
|
||||||
|
|
||||||
|
(fn_parameter_list
|
||||||
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||||
|
|
||||||
|
(line_comment) @comment.inside
|
||||||
|
(line_comment)+ @comment.around
|
||||||
|
|
||||||
|
(doc_comment) @comment.inside
|
||||||
|
(doc_comment)+ @comment.outside
|
Loading…
Reference in New Issue