├── .github └── workflows │ └── test.yml ├── .gitignore ├── Eldev ├── LICENSE ├── README.org ├── ada-ts-casing.el ├── ada-ts-indentation.el ├── ada-ts-mode-lspclient-eglot.el ├── ada-ts-mode-lspclient-lsp-mode.el ├── ada-ts-mode-lspclient.el ├── ada-ts-mode.el ├── doc └── ada-ts-mode.texi └── test ├── ada-ts-mode-eglot-tests.el ├── ada-ts-mode-lsp-mode-tests.el ├── ada-ts-mode-test-utils.el ├── ada-ts-mode-tests.el └── resources ├── command-casing.erts ├── command-defun-comment-box.erts ├── defun-broken.erts ├── defun-entry_body.erts ├── defun-entry_declaration.erts ├── defun-expression_function_declaration.erts ├── defun-formal_abstract_subprogram_declaration.erts ├── defun-formal_concrete_subprogram_declaration.erts ├── defun-formal_package_declaration.erts ├── defun-generic_instantiation.erts ├── defun-generic_package_declaration.erts ├── defun-generic_renaming_declaration.erts ├── defun-generic_subprogram_declaration.erts ├── defun-null_procedure_declaration.erts ├── defun-package_body.erts ├── defun-package_body_stub.erts ├── defun-package_declaration.erts ├── defun-package_renaming_declaration.erts ├── defun-protected_body.erts ├── defun-protected_body_stub.erts ├── defun-protected_type_declaration.erts ├── defun-single_protected_declaration.erts ├── defun-single_task_declaration.erts ├── defun-subprogram_body.erts ├── defun-subprogram_body_stub.erts ├── defun-subprogram_declaration.erts ├── defun-subprogram_renaming_declaration.erts ├── defun-subunit.erts ├── defun-task_body.erts ├── defun-task_body_stub.erts ├── defun-task_type_declaration.erts ├── electric-indent-begin.erts ├── electric-indent-else.erts ├── electric-indent-elsif.erts ├── electric-indent-end.erts ├── electric-indent-exception.erts ├── electric-indent-or.erts ├── electric-indent-private.erts ├── electric-indent-then.erts ├── electric-indent-when.erts ├── filling.erts ├── font-lock-allocator.ada ├── font-lock-derived_type_definition.ada ├── font-lock-exception.ada ├── font-lock-formal_derived_type_definition.ada ├── font-lock-function_call.ada ├── font-lock-generic_instantiation.ada ├── font-lock-interface_type_definition.ada ├── font-lock-operator_symbol.ada ├── font-lock-primary_null.ada ├── font-lock-private_extension_declaration.ada ├── font-lock-procedure_call_statement.ada ├── font-lock-protected.ada ├── font-lock-range_attribute_designator.ada ├── font-lock-record_representation_clause.ada ├── font-lock-record_type_definition.ada ├── font-lock-reduction_attribute_reference.ada ├── font-lock-task.ada ├── hello_world ├── hello_world.adb ├── hello_world.ads └── hello_world.gpr ├── imenu-categories.erts ├── imenu-category-names.erts ├── imenu-nesting-strategy.erts ├── imenu-sort.erts ├── imenu.erts ├── indent-abstract_subprogram_declaration.erts ├── indent-array_delta_aggregate.erts ├── indent-aspect_specification.erts ├── indent-block_statement.erts ├── indent-case_expression.erts ├── indent-case_statement-nl.erts ├── indent-case_statement.erts ├── indent-comment.erts ├── indent-declare_expression.erts ├── indent-enumeration_representation_clause.erts ├── indent-enumeration_type_definition.erts ├── indent-exception_declaration.erts ├── indent-expression_function_declaration.erts ├── indent-extended_return_statement.erts ├── indent-handled_sequence_of_statements-nl.erts ├── indent-handled_sequence_of_statements.erts ├── indent-if_expression.erts ├── indent-if_statement.erts ├── indent-loop_statement.erts ├── indent-null_procedure_declaration.erts ├── indent-package_body.erts ├── indent-package_body_stub.erts ├── indent-package_declaration.erts ├── indent-protected_body.erts ├── indent-protected_body_stub.erts ├── indent-protected_type_declaration.erts ├── indent-quantified_expression.erts ├── indent-record_delta_aggregate.erts ├── indent-record_representation_clause.erts ├── indent-record_type_definition-nl.erts ├── indent-record_type_definition.erts ├── indent-select_statement.erts ├── indent-selected_component.erts ├── indent-single_protected_declaration.erts ├── indent-single_task_declaration.erts ├── indent-subprogram_body.erts ├── indent-subprogram_body_stub.erts ├── indent-subprogram_declaration.erts ├── indent-subunit.erts ├── indent-task_body.erts ├── indent-task_body_stub.erts ├── indent-task_type_declaration.erts ├── indent-use_clause-nl.erts ├── indent-use_clause.erts ├── indent-with_clause.erts ├── mode.erts └── navigation.erts /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/.gitignore -------------------------------------------------------------------------------- /Eldev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/Eldev -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/README.org -------------------------------------------------------------------------------- /ada-ts-casing.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/ada-ts-casing.el -------------------------------------------------------------------------------- /ada-ts-indentation.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/ada-ts-indentation.el -------------------------------------------------------------------------------- /ada-ts-mode-lspclient-eglot.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/ada-ts-mode-lspclient-eglot.el -------------------------------------------------------------------------------- /ada-ts-mode-lspclient-lsp-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/ada-ts-mode-lspclient-lsp-mode.el -------------------------------------------------------------------------------- /ada-ts-mode-lspclient.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/ada-ts-mode-lspclient.el -------------------------------------------------------------------------------- /ada-ts-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/ada-ts-mode.el -------------------------------------------------------------------------------- /doc/ada-ts-mode.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/doc/ada-ts-mode.texi -------------------------------------------------------------------------------- /test/ada-ts-mode-eglot-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/ada-ts-mode-eglot-tests.el -------------------------------------------------------------------------------- /test/ada-ts-mode-lsp-mode-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/ada-ts-mode-lsp-mode-tests.el -------------------------------------------------------------------------------- /test/ada-ts-mode-test-utils.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/ada-ts-mode-test-utils.el -------------------------------------------------------------------------------- /test/ada-ts-mode-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/ada-ts-mode-tests.el -------------------------------------------------------------------------------- /test/resources/command-casing.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/command-casing.erts -------------------------------------------------------------------------------- /test/resources/command-defun-comment-box.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/command-defun-comment-box.erts -------------------------------------------------------------------------------- /test/resources/defun-broken.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-broken.erts -------------------------------------------------------------------------------- /test/resources/defun-entry_body.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-entry_body.erts -------------------------------------------------------------------------------- /test/resources/defun-entry_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-entry_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-expression_function_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-expression_function_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-formal_abstract_subprogram_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-formal_abstract_subprogram_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-formal_concrete_subprogram_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-formal_concrete_subprogram_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-formal_package_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-formal_package_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-generic_instantiation.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-generic_instantiation.erts -------------------------------------------------------------------------------- /test/resources/defun-generic_package_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-generic_package_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-generic_renaming_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-generic_renaming_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-generic_subprogram_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-generic_subprogram_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-null_procedure_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-null_procedure_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-package_body.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-package_body.erts -------------------------------------------------------------------------------- /test/resources/defun-package_body_stub.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-package_body_stub.erts -------------------------------------------------------------------------------- /test/resources/defun-package_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-package_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-package_renaming_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-package_renaming_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-protected_body.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-protected_body.erts -------------------------------------------------------------------------------- /test/resources/defun-protected_body_stub.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-protected_body_stub.erts -------------------------------------------------------------------------------- /test/resources/defun-protected_type_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-protected_type_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-single_protected_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-single_protected_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-single_task_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-single_task_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-subprogram_body.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-subprogram_body.erts -------------------------------------------------------------------------------- /test/resources/defun-subprogram_body_stub.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-subprogram_body_stub.erts -------------------------------------------------------------------------------- /test/resources/defun-subprogram_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-subprogram_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-subprogram_renaming_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-subprogram_renaming_declaration.erts -------------------------------------------------------------------------------- /test/resources/defun-subunit.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-subunit.erts -------------------------------------------------------------------------------- /test/resources/defun-task_body.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-task_body.erts -------------------------------------------------------------------------------- /test/resources/defun-task_body_stub.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-task_body_stub.erts -------------------------------------------------------------------------------- /test/resources/defun-task_type_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/defun-task_type_declaration.erts -------------------------------------------------------------------------------- /test/resources/electric-indent-begin.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/electric-indent-begin.erts -------------------------------------------------------------------------------- /test/resources/electric-indent-else.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/electric-indent-else.erts -------------------------------------------------------------------------------- /test/resources/electric-indent-elsif.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/electric-indent-elsif.erts -------------------------------------------------------------------------------- /test/resources/electric-indent-end.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/electric-indent-end.erts -------------------------------------------------------------------------------- /test/resources/electric-indent-exception.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/electric-indent-exception.erts -------------------------------------------------------------------------------- /test/resources/electric-indent-or.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/electric-indent-or.erts -------------------------------------------------------------------------------- /test/resources/electric-indent-private.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/electric-indent-private.erts -------------------------------------------------------------------------------- /test/resources/electric-indent-then.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/electric-indent-then.erts -------------------------------------------------------------------------------- /test/resources/electric-indent-when.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/electric-indent-when.erts -------------------------------------------------------------------------------- /test/resources/filling.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/filling.erts -------------------------------------------------------------------------------- /test/resources/font-lock-allocator.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-allocator.ada -------------------------------------------------------------------------------- /test/resources/font-lock-derived_type_definition.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-derived_type_definition.ada -------------------------------------------------------------------------------- /test/resources/font-lock-exception.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-exception.ada -------------------------------------------------------------------------------- /test/resources/font-lock-formal_derived_type_definition.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-formal_derived_type_definition.ada -------------------------------------------------------------------------------- /test/resources/font-lock-function_call.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-function_call.ada -------------------------------------------------------------------------------- /test/resources/font-lock-generic_instantiation.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-generic_instantiation.ada -------------------------------------------------------------------------------- /test/resources/font-lock-interface_type_definition.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-interface_type_definition.ada -------------------------------------------------------------------------------- /test/resources/font-lock-operator_symbol.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-operator_symbol.ada -------------------------------------------------------------------------------- /test/resources/font-lock-primary_null.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-primary_null.ada -------------------------------------------------------------------------------- /test/resources/font-lock-private_extension_declaration.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-private_extension_declaration.ada -------------------------------------------------------------------------------- /test/resources/font-lock-procedure_call_statement.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-procedure_call_statement.ada -------------------------------------------------------------------------------- /test/resources/font-lock-protected.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-protected.ada -------------------------------------------------------------------------------- /test/resources/font-lock-range_attribute_designator.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-range_attribute_designator.ada -------------------------------------------------------------------------------- /test/resources/font-lock-record_representation_clause.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-record_representation_clause.ada -------------------------------------------------------------------------------- /test/resources/font-lock-record_type_definition.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-record_type_definition.ada -------------------------------------------------------------------------------- /test/resources/font-lock-reduction_attribute_reference.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-reduction_attribute_reference.ada -------------------------------------------------------------------------------- /test/resources/font-lock-task.ada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/font-lock-task.ada -------------------------------------------------------------------------------- /test/resources/hello_world/hello_world.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/hello_world/hello_world.adb -------------------------------------------------------------------------------- /test/resources/hello_world/hello_world.ads: -------------------------------------------------------------------------------- 1 | procedure Hello_World; 2 | -------------------------------------------------------------------------------- /test/resources/hello_world/hello_world.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/hello_world/hello_world.gpr -------------------------------------------------------------------------------- /test/resources/imenu-categories.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/imenu-categories.erts -------------------------------------------------------------------------------- /test/resources/imenu-category-names.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/imenu-category-names.erts -------------------------------------------------------------------------------- /test/resources/imenu-nesting-strategy.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/imenu-nesting-strategy.erts -------------------------------------------------------------------------------- /test/resources/imenu-sort.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/imenu-sort.erts -------------------------------------------------------------------------------- /test/resources/imenu.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/imenu.erts -------------------------------------------------------------------------------- /test/resources/indent-abstract_subprogram_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-abstract_subprogram_declaration.erts -------------------------------------------------------------------------------- /test/resources/indent-array_delta_aggregate.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-array_delta_aggregate.erts -------------------------------------------------------------------------------- /test/resources/indent-aspect_specification.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-aspect_specification.erts -------------------------------------------------------------------------------- /test/resources/indent-block_statement.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-block_statement.erts -------------------------------------------------------------------------------- /test/resources/indent-case_expression.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-case_expression.erts -------------------------------------------------------------------------------- /test/resources/indent-case_statement-nl.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-case_statement-nl.erts -------------------------------------------------------------------------------- /test/resources/indent-case_statement.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-case_statement.erts -------------------------------------------------------------------------------- /test/resources/indent-comment.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-comment.erts -------------------------------------------------------------------------------- /test/resources/indent-declare_expression.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-declare_expression.erts -------------------------------------------------------------------------------- /test/resources/indent-enumeration_representation_clause.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-enumeration_representation_clause.erts -------------------------------------------------------------------------------- /test/resources/indent-enumeration_type_definition.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-enumeration_type_definition.erts -------------------------------------------------------------------------------- /test/resources/indent-exception_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-exception_declaration.erts -------------------------------------------------------------------------------- /test/resources/indent-expression_function_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-expression_function_declaration.erts -------------------------------------------------------------------------------- /test/resources/indent-extended_return_statement.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-extended_return_statement.erts -------------------------------------------------------------------------------- /test/resources/indent-handled_sequence_of_statements-nl.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-handled_sequence_of_statements-nl.erts -------------------------------------------------------------------------------- /test/resources/indent-handled_sequence_of_statements.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-handled_sequence_of_statements.erts -------------------------------------------------------------------------------- /test/resources/indent-if_expression.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-if_expression.erts -------------------------------------------------------------------------------- /test/resources/indent-if_statement.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-if_statement.erts -------------------------------------------------------------------------------- /test/resources/indent-loop_statement.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-loop_statement.erts -------------------------------------------------------------------------------- /test/resources/indent-null_procedure_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-null_procedure_declaration.erts -------------------------------------------------------------------------------- /test/resources/indent-package_body.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-package_body.erts -------------------------------------------------------------------------------- /test/resources/indent-package_body_stub.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-package_body_stub.erts -------------------------------------------------------------------------------- /test/resources/indent-package_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-package_declaration.erts -------------------------------------------------------------------------------- /test/resources/indent-protected_body.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-protected_body.erts -------------------------------------------------------------------------------- /test/resources/indent-protected_body_stub.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-protected_body_stub.erts -------------------------------------------------------------------------------- /test/resources/indent-protected_type_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-protected_type_declaration.erts -------------------------------------------------------------------------------- /test/resources/indent-quantified_expression.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-quantified_expression.erts -------------------------------------------------------------------------------- /test/resources/indent-record_delta_aggregate.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-record_delta_aggregate.erts -------------------------------------------------------------------------------- /test/resources/indent-record_representation_clause.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-record_representation_clause.erts -------------------------------------------------------------------------------- /test/resources/indent-record_type_definition-nl.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-record_type_definition-nl.erts -------------------------------------------------------------------------------- /test/resources/indent-record_type_definition.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-record_type_definition.erts -------------------------------------------------------------------------------- /test/resources/indent-select_statement.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-select_statement.erts -------------------------------------------------------------------------------- /test/resources/indent-selected_component.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-selected_component.erts -------------------------------------------------------------------------------- /test/resources/indent-single_protected_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-single_protected_declaration.erts -------------------------------------------------------------------------------- /test/resources/indent-single_task_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-single_task_declaration.erts -------------------------------------------------------------------------------- /test/resources/indent-subprogram_body.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-subprogram_body.erts -------------------------------------------------------------------------------- /test/resources/indent-subprogram_body_stub.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-subprogram_body_stub.erts -------------------------------------------------------------------------------- /test/resources/indent-subprogram_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-subprogram_declaration.erts -------------------------------------------------------------------------------- /test/resources/indent-subunit.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-subunit.erts -------------------------------------------------------------------------------- /test/resources/indent-task_body.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-task_body.erts -------------------------------------------------------------------------------- /test/resources/indent-task_body_stub.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-task_body_stub.erts -------------------------------------------------------------------------------- /test/resources/indent-task_type_declaration.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-task_type_declaration.erts -------------------------------------------------------------------------------- /test/resources/indent-use_clause-nl.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-use_clause-nl.erts -------------------------------------------------------------------------------- /test/resources/indent-use_clause.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-use_clause.erts -------------------------------------------------------------------------------- /test/resources/indent-with_clause.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/indent-with_clause.erts -------------------------------------------------------------------------------- /test/resources/mode.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/mode.erts -------------------------------------------------------------------------------- /test/resources/navigation.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownts/ada-ts-mode/HEAD/test/resources/navigation.erts --------------------------------------------------------------------------------