breandan considine 7b75f3ad99 Replaced internal .html links with .md extension
Find: (\([^:\)]+\.)html\)

Replace: $1md\)
2015-08-06 19:38:31 -04:00

1.9 KiB

title
Basics of working with the Editor

Source code


This tutorial will lead you through the series of steps showing how to work with the Editor in IntelliJ IDEA, how access and modify text it contains, and how to handle events sent to the Editor.

Note: The described part of the API allows to operate only with text. If you need to access PSI please see PSI Cookbook section.

See also: editor-ui-api package, Editor.java, EditorImpl.java. CommonDataKeys.java, DataKey.java, AnActionEvent, DataContext

Related topics: Action System