a few <web-summary> for popular pages

This commit is contained in:
Yann Cébron 2025-03-10 14:04:27 +01:00
parent 64c08922bc
commit d944feed08
5 changed files with 20 additions and 0 deletions

View File

@ -2,6 +2,10 @@
# Verifying Plugin Compatibility
<web-summary>
Verifying plugin binary compatibility using Plugin Verifier and inspections to ensure the plugin works correctly with the latest IDE versions.
</web-summary>
<link-summary>Tooling for ensuring compatibility.</link-summary>
See [](api_changes_list.md) for known breaking changes.

View File

@ -2,6 +2,10 @@
# Actions
<web-summary>
Adding custom actions to menus and toolbars. Implement and register actions, and handle user interactions efficiently.
</web-summary>
<link-summary>Adding custom actions to IntelliJ Platform-based IDEs menus and toolbar.</link-summary>
<tldr>

View File

@ -4,6 +4,10 @@
<!-- https://jb.gg/ij-plugin-dependencies -->
<web-summary>
Declaring dependencies on other IntelliJ Platform-based plugins. Locating plugin IDs required to set up dependencies.
</web-summary>
<link-summary>Declaring dependencies on other IntelliJ Platform-based plugins.</link-summary>
A plugin may depend on API and classes from other plugins, either bundled or third-party.

View File

@ -2,6 +2,10 @@
# Extensions
<web-summary>
Declaring extensions in plugins to customize the IDE's behavior and functionality using available extension points.
</web-summary>
<link-summary>Extensions are the most common way of customizing functionality in the IDE.</link-summary>
_Extensions_ are the most common way for a plugin to extend the IntelliJ Platform's functionality in a way that is not as straightforward as adding an action to a menu or toolbar.

View File

@ -4,6 +4,10 @@
<primary-label ref="CommercialIDEs"/>
<web-summary>
Using Language Server Protocol (LSP) in IntelliJ-based IDEs to enhance development tools with language-specific features like code completion, documentation, and formatting.
</web-summary>
<link-summary>Language Server Protocol (LSP) support in IntelliJ-based IDEs</link-summary>
The [Language Server Protocol](https://microsoft.github.io/language-server-protocol/) (LSP) is an open-standard protocol developed by Microsoft. It enables communication between development tools and Language Servers.