From 96cb09198d6c5492f0d57ef60652bf296d7988cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Wed, 21 Sep 2022 12:21:42 +0200 Subject: [PATCH] editor_basics.md: cleanup --- topics/tutorials/editor_basics.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/topics/tutorials/editor_basics.md b/topics/tutorials/editor_basics.md index 77502ad40..ee7e37b7a 100644 --- a/topics/tutorials/editor_basics.md +++ b/topics/tutorials/editor_basics.md @@ -2,24 +2,23 @@ -This tutorial will lead you through the series of steps showing how to work with the IntelliJ Platform Editor, how to access and modify text it contains, and how to handle events sent to the editor. -* [1. Working With Text](working_with_text.md) -* [2. Editor coordinate systems: positions and offsets](coordinates_system.md) -* [3. Handling Editor Events](editor_events.md) +This tutorial will lead you through a series of steps showing how to work with the IntelliJ Platform Editor, how to access and modify text it contains, and how to handle events sent to the editor. +* [](working_with_text.md) +* [](coordinates_system.md) +* [](editor_events.md) -**Note:** The part of the API described in this tutorial only allows operations with text. -For operations that require access to the PSI please see the [PSI Cookbook](psi_cookbook.md) section. +> The part of the API described in this tutorial only allows operations with "plain text". +> For operations that require access to the PSI, please see [](psi.md). -**See also:** The following are referenced in the tutorial: * The [editor_basics](%gh-sdk-samples%/editor_basics/) plugin code sample, * [editor-ui-api package](%gh-ic%/platform/editor-ui-api), -* Those not found in editor-ui-api package: +* Those not found in `editor-ui-api` package: * [`EditorActionManager`](%gh-ic%/platform/platform-api/src/com/intellij/openapi/editor/actionSystem/EditorActionManager.java), * [`EditorActionHandler`](%gh-ic%/platform/platform-api/src/com/intellij/openapi/editor/actionSystem/EditorActionHandler.java), * [`TypedActionHandler`](%gh-ic%/platform/platform-api/src/com/intellij/openapi/editor/actionSystem/TypedActionHandler.java), * [`TypedAction`](%gh-ic%/platform/platform-api/src/com/intellij/openapi/editor/actionSystem/TypedAction.java). **Related topics:** -* [Action System](basic_action_system.md) -* [Threading Issues](general_threading_rules.md) +* [](basic_action_system.md) +* [](general_threading_rules.md)