diff --git a/ijs.tree b/ijs.tree
index 8cdc2da98..1731c4448 100644
--- a/ijs.tree
+++ b/ijs.tree
@@ -102,7 +102,7 @@
-
+
diff --git a/topics/basics/action_system.md b/topics/basics/action_system.md
index 5a6bbe3a2..36801f808 100644
--- a/topics/basics/action_system.md
+++ b/topics/basics/action_system.md
@@ -24,7 +24,7 @@ The action implementation determines the contexts in which an action is availabl
Registration determines where an action appears in the IDE UI.
Once implemented and registered, an action receives callbacks from the IntelliJ Platform in response to user gestures.
-The [](working_with_custom_actions.md) tutorial describes the process of adding a custom action to a plugin.
+The [](creating_actions_tutorial.md) tutorial describes the process of adding a custom action to a plugin.
The [](grouping_action.md) tutorial demonstrates three types of groups that can contain actions.
## Action Implementation
diff --git a/topics/tutorials/action_system/working_with_custom_actions.md b/topics/tutorials/action_system/creating_actions_tutorial.md
similarity index 100%
rename from topics/tutorials/action_system/working_with_custom_actions.md
rename to topics/tutorials/action_system/creating_actions_tutorial.md
diff --git a/topics/tutorials/action_system/grouping_action.md b/topics/tutorials/action_system/grouping_action.md
index ec1d597e2..b9a122186 100644
--- a/topics/tutorials/action_system/grouping_action.md
+++ b/topics/tutorials/action_system/grouping_action.md
@@ -8,7 +8,7 @@ If an implementation requires several actions, or there are simply too many acti
This tutorial demonstrates adding an action to an existing group, creating a new action group, and action groups with a variable number of actions.
The sample code discussed in this tutorial is from the code sample [`action_basics`](%gh-sdk-samples-master%/action_basics).
-Some content in this tutorial assumes the reader is familiar with the [](working_with_custom_actions.md) tutorial.
+Some content in this tutorial assumes the reader is familiar with the [](creating_actions_tutorial.md) tutorial.
## Simple Action Groups
@@ -40,7 +40,7 @@ See [](action_system.md#registering-actions-in-pluginxml) for more information a
The following sample shows how to use an [``](plugin_configuration_file.md#idea-plugin__actions__action__add-to-group) element to place a custom action group relative to an entry in the Tools menu.
The attribute `relative-to-action` references the action `id` for `PopupDialogAction`, not a native IntelliJ menu entry.
Rather `PopupDialogAction` is defined in the same [`plugin.xml`](%gh-sdk-samples-master%/action_basics/src/main/resources/META-INF/plugin.xml) file.
-This group is placed after the single entry for the action `PopupDialogAction`, as defined in the [Creating Actions](working_with_custom_actions.md#registering-an-action-with-the-new-action-form) tutorial.
+This group is placed after the single entry for the action `PopupDialogAction`, as defined in the [Creating Actions](creating_actions_tutorial.md#registering-an-action-with-the-new-action-form) tutorial.
```xml
`](plugin_configuration_file.md#idea-plugin__actions__action) entry from the `id` previously used to register this action implementation in the [Creating Actions](working_with_custom_actions.md#registering-an-action-with-the-new-action-form) tutorial.
+This value differentiates this new [``](plugin_configuration_file.md#idea-plugin__actions__action) entry from the `id` previously used to register this action implementation in the [Creating Actions](creating_actions_tutorial.md#registering-an-action-with-the-new-action-form) tutorial.
A unique `id` supports reuse of action classes in more than one menu or group.
The action in this group will be displayed in the menu as "A Group Action".
@@ -85,7 +85,7 @@ The action in this group will be displayed in the menu as "A Group Action".
After performing the steps described above, the action group and its content will be available in the Tools menu.
The underlying `PopupDialogAction` implementation is reused for two entries in the Tools menu:
-* Once for the top menu entry Tools | Pop Dialog Action with the action `id` equal to `org.intellij.sdk.action.PopupDialogAction` as set in the [Creating Actions](working_with_custom_actions.md#registering-an-action-with-the-new-action-form) tutorial.
+* Once for the top menu entry Tools | Pop Dialog Action with the action `id` equal to `org.intellij.sdk.action.PopupDialogAction` as set in the [Creating Actions](creating_actions_tutorial.md#registering-an-action-with-the-new-action-form) tutorial.
* A second time for the menu entry Tools | Static Grouped Actions | A Group Action with the action `id` equal to `org.intellij.sdk.action.GroupPopDialogAction`.
{width="550"}
@@ -93,7 +93,7 @@ The underlying `PopupDialogAction` implementation is reused for two entries in t
## Implementing Custom Action Group Classes
In some cases, the specific behavior of an action group needs to depend on the context.
-The solution is analogous to making a [single action entry dependent on context](working_with_custom_actions.md#extending-the-update-method).
+The solution is analogous to making a [single action entry dependent on context](creating_actions_tutorial.md#extending-the-update-method).
The steps below show how to make a group of actions available and visible if certain conditions are met.
In this case, the condition is having an instance of available editor.
diff --git a/topics/tutorials/actions_tutorial.md b/topics/tutorials/actions_tutorial.md
index 8c8b4ce98..bc7157d97 100644
--- a/topics/tutorials/actions_tutorial.md
+++ b/topics/tutorials/actions_tutorial.md
@@ -6,7 +6,7 @@
This tutorial leads you through a series of steps which show how to create, register, and customize custom actions and action groups.
By registering actions, you can add your own menu items, toolbar buttons and keyboard shortcuts to the IDE user interface.
-* [](working_with_custom_actions.md)
+* [](creating_actions_tutorial.md)
* [](grouping_action.md)
The source code for the [`action_basics`](%gh-sdk-samples-master%/action_basics) code sample is used throughout this tutorial.
diff --git a/topics/tutorials/build_system/creating_plugin_project.md b/topics/tutorials/build_system/creating_plugin_project.md
index 855e9c4ab..13615b6c7 100644
--- a/topics/tutorials/build_system/creating_plugin_project.md
+++ b/topics/tutorials/build_system/creating_plugin_project.md
@@ -183,7 +183,7 @@ Gradle projects are run from the IDE's Gradle Tool window.
### Adding Code to the Project
Before running [`my_plugin`](#components-of-a-wizard-generated-gradle-intellij-platform-plugin), some code can be added to provide simple functionality.
-See the [](working_with_custom_actions.md) tutorial for step-by-step instructions for adding a menu action.
+See the [](creating_actions_tutorial.md) tutorial for step-by-step instructions for adding a menu action.
### Executing the Plugin
diff --git a/topics/tutorials/editor_basics/working_with_text.md b/topics/tutorials/editor_basics/working_with_text.md
index ab4bd5651..7d91bc850 100644
--- a/topics/tutorials/editor_basics/working_with_text.md
+++ b/topics/tutorials/editor_basics/working_with_text.md
@@ -21,7 +21,7 @@ In this example, we access the `Editor` from an action.
The source code for the Java class in this example is [EditorIllustrationAction](%gh-sdk-samples-master%/editor_basics/src/main/java/org/intellij/sdk/editor/EditorIllustrationAction.java).
To register the action, we must add the corresponding elements to the [``](plugin_configuration_file.md#idea-plugin__actions) section of the plugin configuration file [plugin.xml](%gh-sdk-samples-master%/editor_basics/src/main/resources/META-INF/plugin.xml).
-For more information, refer to the [](working_with_custom_actions.md#registering-a-custom-action) section.
+For more information, refer to the [](creating_actions_tutorial.md#registering-a-custom-action) section.
The `EditorIllustrationAction` action is registered in the group `EditorPopupMenu` so it will be available from the context menu when focus is on the editor:
```xml