diff --git a/topics/reference_guide/custom_language_support.md b/topics/reference_guide/custom_language_support.md
index 89ede2e40..a249e8315 100644
--- a/topics/reference_guide/custom_language_support.md
+++ b/topics/reference_guide/custom_language_support.md
@@ -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"}
diff --git a/topics/tutorials/custom_language_support/custom_language_support_tutorial.md b/topics/tutorials/custom_language_support/custom_language_support_tutorial.md
index 2adcf2649..a861eb3c9 100644
--- a/topics/tutorials/custom_language_support/custom_language_support_tutorial.md
+++ b/topics/tutorials/custom_language_support/custom_language_support_tutorial.md
@@ -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"}
diff --git a/topics/tutorials/writing_tests_for_plugins/writing_tests_for_plugins.md b/topics/tutorials/writing_tests_for_plugins/writing_tests_for_plugins.md
index 397ea9b59..d842d0b6f 100644
--- a/topics/tutorials/writing_tests_for_plugins/writing_tests_for_plugins.md
+++ b/topics/tutorials/writing_tests_for_plugins/writing_tests_for_plugins.md
@@ -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"}