From dcdf7ad585c2a8a5a464007e58a5c1097f30c3db Mon Sep 17 00:00:00 2001 From: Karol Lewandowski Date: Tue, 21 Mar 2023 12:42:34 +0100 Subject: [PATCH] Add missing --- topics/reference_guide/custom_language_support/navbar.md | 6 ++++-- .../custom_language_support/structure_view.md | 6 ++++-- topics/reference_guide/project_model/facet.md | 6 ++++-- topics/tutorials/editor_basics/coordinates_system.md | 6 +++--- topics/tutorials/editor_basics/working_with_text.md | 6 ++++-- .../writing_tests_for_plugins/writing_tests_for_plugins.md | 7 ++++--- topics/user_interface_components/status_bar_widgets.md | 6 ++++-- 7 files changed, 27 insertions(+), 16 deletions(-) diff --git a/topics/reference_guide/custom_language_support/navbar.md b/topics/reference_guide/custom_language_support/navbar.md index a906d940b..f374005c5 100644 --- a/topics/reference_guide/custom_language_support/navbar.md +++ b/topics/reference_guide/custom_language_support/navbar.md @@ -1,6 +1,8 @@ -[//]: # (title: Navigation Bar) + - +# Navigation Bar + +Implementing custom navigation bars. diff --git a/topics/reference_guide/custom_language_support/structure_view.md b/topics/reference_guide/custom_language_support/structure_view.md index de2d98934..5967ad8f3 100644 --- a/topics/reference_guide/custom_language_support/structure_view.md +++ b/topics/reference_guide/custom_language_support/structure_view.md @@ -1,6 +1,8 @@ -[//]: # (title: Structure View) + - +# Structure View + +Implementing a custom language file structure view showing the file elements tree. diff --git a/topics/reference_guide/project_model/facet.md b/topics/reference_guide/project_model/facet.md index 71a733301..61554140e 100644 --- a/topics/reference_guide/project_model/facet.md +++ b/topics/reference_guide/project_model/facet.md @@ -1,6 +1,8 @@ -[//]: # (title: Facet) + - +# Facet + +Introduction to facets representing a framework/technology configuration for a module. diff --git a/topics/tutorials/editor_basics/coordinates_system.md b/topics/tutorials/editor_basics/coordinates_system.md index 522850626..674a44724 100644 --- a/topics/tutorials/editor_basics/coordinates_system.md +++ b/topics/tutorials/editor_basics/coordinates_system.md @@ -1,6 +1,8 @@ + + # 2. Editor Coordinates System. Positions and Offsets - +Tutorial demonstrating how to access editor coordinate system. The previous tutorial [Working with Text](working_with_text.md) demonstrated how to use actions to access a caret placed in a document open in an editor. The examples replaced selected text in a document by using information about the caret. @@ -145,8 +147,6 @@ For the Visual Position the caret leans right, indicating its association with t ![Caret Column Position - Block Caret](caret_col_pos_block.png){width="800"} -
- Consider the Java snippet below, and use the `editor_basics` **Caret Position** action to report caret information at each step. Be sure to use the keyboard shortcut to invoke the action so that the caret position is not disturbed. diff --git a/topics/tutorials/editor_basics/working_with_text.md b/topics/tutorials/editor_basics/working_with_text.md index b0e75648f..53d5bf94d 100644 --- a/topics/tutorials/editor_basics/working_with_text.md +++ b/topics/tutorials/editor_basics/working_with_text.md @@ -1,6 +1,8 @@ -[//]: # (title: 1. Working with Text) + - +# 1. Working with Text + +Tutorial demonstrating how to retrieve and replace text in the editor. This tutorial shows how to use actions to access a caret placed in a document open in an editor. Using information about the caret, replace selected text in a document with a string. 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 57cf03ec1..30489baa7 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 @@ -1,6 +1,8 @@ -[//]: # (title: Testing a Custom Language Plugin) + - +# Testing a Custom Language Plugin + +Tutorial demonstrating how to develop tests for custom language plugin features. > Please see [](testing_plugins.md) for a general introduction. > @@ -24,4 +26,3 @@ As an example, the plugin implemented in the [Custom Language Support Tutorial]( * [](commenter_test.md) * [](reference_test.md) * [](documentation_test.md) - diff --git a/topics/user_interface_components/status_bar_widgets.md b/topics/user_interface_components/status_bar_widgets.md index d54ee6563..2cc683a26 100644 --- a/topics/user_interface_components/status_bar_widgets.md +++ b/topics/user_interface_components/status_bar_widgets.md @@ -1,6 +1,8 @@ -[//]: # (title: Status Bar Widgets) + - +# Status Bar Widgets + +Extending status bar with custom widgets providing information about the current file, project, IDE, etc.