mirror of https://github.com/helix-editor/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
363 B
Scheme
16 lines
363 B
Scheme
; Support for folding in Ada
|
|
;; za toggles folding a package, subprogram, if statement or loop
|
|
|
|
[
|
|
(package_declaration)
|
|
(generic_package_declaration)
|
|
(package_body)
|
|
(subprogram_declaration)
|
|
(subprogram_body)
|
|
(block_statement)
|
|
(if_statement)
|
|
(loop_statement)
|
|
(gnatprep_declarative_if_statement)
|
|
(gnatprep_if_statement)
|
|
] @fold
|