From 77d1f06cfb6acfba9676e35f6c4abcf0f1085319 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Tue, 11 May 2021 17:27:46 +0200 Subject: [PATCH] plugin_extensions.md: link explore --- topics/basics/plugin_structure/plugin_extensions.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/topics/basics/plugin_structure/plugin_extensions.md b/topics/basics/plugin_structure/plugin_extensions.md index ff74ad2c7..f397f8752 100644 --- a/topics/basics/plugin_structure/plugin_extensions.md +++ b/topics/basics/plugin_structure/plugin_extensions.md @@ -18,12 +18,13 @@ There are more than 1000 extension points available in the platform and the bund ## Exploring Available Extensions [Extension Point List](extension_point_list.md) contains all available extension points in IntelliJ Platform and from bundled plugins in IntelliJ IDEA. - -Alternatively (or when using 3rd party extension points), all available extension points for the specified namespace can be listed using auto-completion inside the `` block in plugin.xml. -Use View | Quick Documentation in the lookup list to access more information about the extension point and implementation (if applicable). - +Additionally, dedicated Extension Point Lists specific to IDEs are available under _Part VIII - Product Specific_. Browse usages inside existing implementations of open-source IntelliJ Platform plugins via [IntelliJ Platform Explorer](https://jb.gg/ipe). +Alternatively (or when using 3rd party extension points), all available extension points for the specified namespace (`defaultExtensionNs`) can be listed using auto-completion inside the `` block in plugin.xml. +Use View | Quick Documentation in the lookup list to access more information about the extension point and implementation (if applicable). +See [Explore the IntelliJ Platform API](explore_api.md) for more information and strategies. + ## Declaring Extensions > Auto-completion, Quick Documentation, and other code insight features are available on extension point tags and attributes.