mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
custom language: reorder link table
This commit is contained in:
parent
031c713b15
commit
080ffb69ac
@ -29,8 +29,8 @@ The webinar [How We Built Comma, the Raku IDE, on the IntelliJ Platform](https:/
|
|||||||
### Initial Setup
|
### Initial Setup
|
||||||
|
|
||||||
* [](registering_file_type.md)
|
* [](registering_file_type.md)
|
||||||
* [](implementing_lexer.md)
|
|
||||||
* [](implementing_parser_and_psi.md)
|
* [](implementing_parser_and_psi.md)
|
||||||
|
* [](implementing_lexer.md)
|
||||||
* [](syntax_highlighting_and_error_highlighting.md)
|
* [](syntax_highlighting_and_error_highlighting.md)
|
||||||
* {columns="2"}
|
* {columns="2"}
|
||||||
|
|
||||||
@ -47,23 +47,23 @@ The webinar [How We Built Comma, the Raku IDE, on the IntelliJ Platform](https:/
|
|||||||
### Refactoring
|
### Refactoring
|
||||||
|
|
||||||
* [](find_usages.md)
|
* [](find_usages.md)
|
||||||
* [](rename_refactoring.md)
|
|
||||||
* [](safe_delete_refactoring.md)
|
* [](safe_delete_refactoring.md)
|
||||||
|
* [](rename_refactoring.md)
|
||||||
* {columns="2"}
|
* {columns="2"}
|
||||||
|
|
||||||
### Editor and IDE Features
|
### Editor and IDE Features
|
||||||
|
|
||||||
* [](code_formatting.md)
|
* [](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)
|
* [](go_to_class_and_go_to_symbol.md)
|
||||||
|
* [](code_inspections_and_intentions.md)
|
||||||
* [](documentation.md)
|
* [](documentation.md)
|
||||||
|
* [](structure_view.md)
|
||||||
* [](parameter_info.md)
|
* [](parameter_info.md)
|
||||||
|
* [](navbar.md)
|
||||||
* [](inlay_hints.md)
|
* [](inlay_hints.md)
|
||||||
|
* Code Hierarchy
|
||||||
* [](spell_checking.md)
|
* [](spell_checking.md)
|
||||||
|
* [](surround_with.md)
|
||||||
* [](additional_minor_features.md)
|
* [](additional_minor_features.md)
|
||||||
* {columns="2"}
|
* {columns="2"}
|
||||||
|
|
||||||
|
@ -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:
|
This a step-by-step tutorial, and it requires completing each step, in order:
|
||||||
|
|
||||||
* [](prerequisites.md)
|
* [](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)
|
* [](folding_builder.md)
|
||||||
|
* [](language_and_filetype.md)
|
||||||
* [](go_to_symbol_contributor.md)
|
* [](go_to_symbol_contributor.md)
|
||||||
|
* [](grammar_and_parser.md)
|
||||||
* [](structure_view_factory.md)
|
* [](structure_view_factory.md)
|
||||||
|
* [](lexer_and_parser_definition.md)
|
||||||
* [](structure_aware_navbar.md)
|
* [](structure_aware_navbar.md)
|
||||||
|
* [](syntax_highlighter_and_color_settings_page.md)
|
||||||
* [](formatter.md)
|
* [](formatter.md)
|
||||||
|
* [](psi_helper_and_utilities.md)
|
||||||
* [](code_style_settings.md)
|
* [](code_style_settings.md)
|
||||||
|
* [](annotator.md)
|
||||||
* [](commenter.md)
|
* [](commenter.md)
|
||||||
|
* [](line_marker_provider.md)
|
||||||
* [](quick_fix.md)
|
* [](quick_fix.md)
|
||||||
|
* [](completion_contributor.md)
|
||||||
* [](documentation_provider.md)
|
* [](documentation_provider.md)
|
||||||
|
* [](reference_contributor.md)
|
||||||
* [](spell_checking_strategy.md)
|
* [](spell_checking_strategy.md)
|
||||||
|
* [](find_usages_provider.md)
|
||||||
* {columns="2"}
|
* {columns="2"}
|
||||||
|
|
||||||
<include from="snippets.md" element-id="missingContent"/>
|
<include from="snippets.md" element-id="missingContent"/>
|
||||||
|
@ -16,16 +16,16 @@ As an example, the plugin implemented in the [Custom Language Support Tutorial](
|
|||||||
>
|
>
|
||||||
|
|
||||||
* [](tests_prerequisites.md)
|
* [](tests_prerequisites.md)
|
||||||
* [](parsing_test.md)
|
|
||||||
* [](completion_test.md)
|
|
||||||
* [](annotator_test.md)
|
|
||||||
* [](formatter_test.md)
|
|
||||||
* [](rename_test.md)
|
|
||||||
* [](folding_test.md)
|
* [](folding_test.md)
|
||||||
|
* [](parsing_test.md)
|
||||||
* [](find_usages_test.md)
|
* [](find_usages_test.md)
|
||||||
|
* [](completion_test.md)
|
||||||
* [](commenter_test.md)
|
* [](commenter_test.md)
|
||||||
|
* [](annotator_test.md)
|
||||||
* [](reference_test.md)
|
* [](reference_test.md)
|
||||||
|
* [](formatter_test.md)
|
||||||
* [](documentation_test.md)
|
* [](documentation_test.md)
|
||||||
|
* [](rename_test.md)
|
||||||
* {columns="2"}
|
* {columns="2"}
|
||||||
|
|
||||||
<seealso style="cards">
|
<seealso style="cards">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user