point to the actions system main page instead of the actions tutorial

This commit is contained in:
Karol Lewandowski 2022-08-16 14:35:05 +02:00
parent e86de8865b
commit 60c1e85177
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ The PSI parses code, builds indexes, and creates a semantic model.
The IntelliJ Platform is extremely extensible, and most features and services can be extended.
Some of the common extension points are:
* [Actions](action_system.md) - menu and toolbar items
* [Actions](basic_action_system.md) - menu and toolbar items
* [Code inspections](code_inspections.md) - code analysis that looks at the syntax trees and semantic models and highlight issues in the editor.
* [Intentions](code_intentions.md) - context-specific actions that are available in the <shortcut>Alt+Enter</shortcut> menu when the text caret is at a particular location.
* [Code completion](code_completion.md).

View File

@ -21,5 +21,5 @@ The following are referenced in the tutorial:
* [`TypedAction`](%gh-ic%/platform/platform-api/src/com/intellij/openapi/editor/actionSystem/TypedAction.java).
**Related topics:**
* [Action System](action_system.md)
* [Action System](basic_action_system.md)
* [Threading Issues](general_threading_rules.md)