mirror of
https://github.com/helix-editor/helix
synced 2026-08-14 17:34:18 +02:00
Indentation of single line statements doesn't work, i.e. for (;;)<hit enter> leads to for(;;) <cursor here> Only blocks with curly braces are indented.
18 lines
256 B
INI
18 lines
256 B
INI
indent = [
|
|
"compound_statement",
|
|
"field_declaration_list",
|
|
"enumerator_list",
|
|
"parameter_list",
|
|
"init_declarator",
|
|
"case_statement",
|
|
"condition_clause",
|
|
"expression_statement",
|
|
]
|
|
|
|
outdent = [
|
|
"case",
|
|
"access_specifier",
|
|
"}",
|
|
"]",
|
|
]
|