custom language: reorder link table

This commit is contained in:
Yann Cébron 2024-05-08 10:31:02 +02:00
parent 031c713b15
commit 080ffb69ac
3 changed files with 22 additions and 22 deletions

View File

@ -29,8 +29,8 @@ The webinar [How We Built Comma, the Raku IDE, on the IntelliJ Platform](https:/
### Initial Setup
* [](registering_file_type.md)
* [](implementing_lexer.md)
* [](implementing_parser_and_psi.md)
* [](implementing_lexer.md)
* [](syntax_highlighting_and_error_highlighting.md)
* {columns="2"}
@ -47,23 +47,23 @@ The webinar [How We Built Comma, the Raku IDE, on the IntelliJ Platform](https:/
### Refactoring
* [](find_usages.md)
* [](rename_refactoring.md)
* [](safe_delete_refactoring.md)
* [](rename_refactoring.md)
* {columns="2"}
### Editor and IDE Features
* [](code_formatting.md)
* [](code_inspections_and_intentions.md)
* [](structure_view.md)
* [](navbar.md)
* Code Hierarchy
* [](surround_with.md)
* [](go_to_class_and_go_to_symbol.md)
* [](code_inspections_and_intentions.md)
* [](documentation.md)
* [](structure_view.md)
* [](parameter_info.md)
* [](navbar.md)
* [](inlay_hints.md)
* Code Hierarchy
* [](spell_checking.md)
* [](surround_with.md)
* [](additional_minor_features.md)
* {columns="2"}

View File

@ -24,26 +24,26 @@ In this tutorial, we will add support for a [.properties](https://en.wikipedia.o
This a step-by-step tutorial, and it requires completing each step, in order:
* [](prerequisites.md)
* [](language_and_filetype.md)
* [](grammar_and_parser.md)
* [](lexer_and_parser_definition.md)
* [](syntax_highlighter_and_color_settings_page.md)
* [](psi_helper_and_utilities.md)
* [](annotator.md)
* [](line_marker_provider.md)
* [](completion_contributor.md)
* [](reference_contributor.md)
* [](find_usages_provider.md)
* [](folding_builder.md)
* [](language_and_filetype.md)
* [](go_to_symbol_contributor.md)
* [](grammar_and_parser.md)
* [](structure_view_factory.md)
* [](lexer_and_parser_definition.md)
* [](structure_aware_navbar.md)
* [](syntax_highlighter_and_color_settings_page.md)
* [](formatter.md)
* [](psi_helper_and_utilities.md)
* [](code_style_settings.md)
* [](annotator.md)
* [](commenter.md)
* [](line_marker_provider.md)
* [](quick_fix.md)
* [](completion_contributor.md)
* [](documentation_provider.md)
* [](reference_contributor.md)
* [](spell_checking_strategy.md)
* [](find_usages_provider.md)
* {columns="2"}
<include from="snippets.md" element-id="missingContent"/>

View File

@ -16,16 +16,16 @@ As an example, the plugin implemented in the [Custom Language Support Tutorial](
>
* [](tests_prerequisites.md)
* [](parsing_test.md)
* [](completion_test.md)
* [](annotator_test.md)
* [](formatter_test.md)
* [](rename_test.md)
* [](folding_test.md)
* [](parsing_test.md)
* [](find_usages_test.md)
* [](completion_test.md)
* [](commenter_test.md)
* [](annotator_test.md)
* [](reference_test.md)
* [](formatter_test.md)
* [](documentation_test.md)
* [](rename_test.md)
* {columns="2"}
<seealso style="cards">