From 2e70043b971a3b2763e91408f482bb36d0735a23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Tue, 23 Jul 2024 15:53:35 +0200 Subject: [PATCH] plugin_extensions.md: `actionId` EP property --- topics/basics/plugin_structure/plugin_extensions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/topics/basics/plugin_structure/plugin_extensions.md b/topics/basics/plugin_structure/plugin_extensions.md index a68d24dc1..d5bb584eb 100644 --- a/topics/basics/plugin_structure/plugin_extensions.md +++ b/topics/basics/plugin_structure/plugin_extensions.md @@ -1,6 +1,6 @@ # Extensions - + Extensions are the most common way of customizing functionality in the IDE. @@ -129,7 +129,7 @@ A required parent type can be specified in the extension point declaration via n Property name `language` (or ending in `*Language`, 2020.2+) resolves to all present `Language` IDs. -Similarly, `action` resolves to all registered [``](plugin_configuration_file.md#idea-plugin__actions__action) IDs. +Similarly, `action`/`actionId` (2024.3+) resolves to all registered [``](plugin_configuration_file.md#idea-plugin__actions__action) IDs. Annotating with [`@Nls`](%gh-java-annotations%/common/src/main/java/org/jetbrains/annotations/Nls.java) validates a UI `String` capitalization according to the text property `Capitalization` enum value (2019.2 and later).