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.