plugin_configuration_file.md: Remove vertical space in paragraphs in list items

Co-authored-by: karollewandowski <1154140+karollewandowski@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2024-11-21 13:47:04 +01:00 committed by GitHub
parent 287a159a4a
commit af2d91796a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -101,6 +101,7 @@ Attributes
The link to the plugin homepage displayed on the plugin page in The link to the plugin homepage displayed on the plugin page in
the [JetBrains Marketplace](https://plugins.jetbrains.com). the [JetBrains Marketplace](https://plugins.jetbrains.com).
- `require-restart` _(optional)_<br/> - `require-restart` _(optional)_<br/>
The boolean value determining whether the plugin installation, update, or uninstallation requires an IDE restart The boolean value determining whether the plugin installation, update, or uninstallation requires an IDE restart
(see [Dynamic Plugins](dynamic_plugins.md) for details).<br/> (see [Dynamic Plugins](dynamic_plugins.md) for details).<br/>
Default value: `false`. Default value: `false`.
@ -242,6 +243,7 @@ Attributes
a [Freemium](https://plugins.jetbrains.com/docs/marketplace/freemium.html) plugin.<br/> a [Freemium](https://plugins.jetbrains.com/docs/marketplace/freemium.html) plugin.<br/>
Default value: `false`. Default value: `false`.
- `eap` _(optional)_<br/> - `eap` _(optional)_<br/>
Specifies the boolean value determining whether the plugin is an EAP release.<br/> Specifies the boolean value determining whether the plugin is an EAP release.<br/>
Default value: `false`. Default value: `false`.
@ -271,6 +273,7 @@ Attributes
- `since-build` _(**required**)_<br/> - `since-build` _(**required**)_<br/>
The lowest IDE version compatible with the plugin. The lowest IDE version compatible with the plugin.
- `until-build` _(optional)_<br/> - `until-build` _(optional)_<br/>
The highest IDE version compatible with the plugin. The highest IDE version compatible with the plugin.
Undefined value declares compatibility with all the IDEs since the version specified by the `since-build` Undefined value declares compatibility with all the IDEs since the version specified by the `since-build`
(also with the future builds that may cause incompatibility errors). (also with the future builds that may cause incompatibility errors).
@ -311,6 +314,7 @@ Attributes
The URL to the vendor's homepage. The URL to the vendor's homepage.
Supports `https://` and `http://` scheme links. Supports `https://` and `http://` scheme links.
- `email` _(optional)_<br/> - `email` _(optional)_<br/>
The vendor's email address. The vendor's email address.
Examples Examples
@ -438,6 +442,7 @@ Attributes
- `true` - the plugin will be loaded - `true` - the plugin will be loaded
- `false` (default) - the plugin will not be loaded - `false` (default) - the plugin will not be loaded
- `config-file` _(required when `optional` is `true`)_<br/> - `config-file` _(required when `optional` is `true`)_<br/>
Relative path to an Relative path to an
[additional configuration file](#additional-plugin-configuration-files), [additional configuration file](#additional-plugin-configuration-files),
loaded only if the dependency plugin is installed in the current IDE. loaded only if the dependency plugin is installed in the current IDE.
@ -519,6 +524,7 @@ Required
Attributes Attributes
: :
- `defaultExtensionNs` _(optional)_<br/> - `defaultExtensionNs` _(optional)_<br/>
Default extensions namespace. Default extensions namespace.
It allows skipping the common prefix in fully qualified extension point names. It allows skipping the common prefix in fully qualified extension point names.
Usually, the `com.intellij` namespace is used when the plugin implements IntelliJ Platform extensions. Usually, the `com.intellij` namespace is used when the plugin implements IntelliJ Platform extensions.
@ -614,6 +620,7 @@ Attributes
which is a prerequisite for [dynamic plugins](dynamic_plugins.md).<br/> which is a prerequisite for [dynamic plugins](dynamic_plugins.md).<br/>
Default value: `false`. Default value: `false`.
- `area` _(optional)_<br/> - `area` _(optional)_<br/>
The scope in which the [extension](plugin_extensions.md) is The scope in which the [extension](plugin_extensions.md) is
instantiated. instantiated.
It is not recommended to use non-default values. It is not recommended to use non-default values.
@ -649,6 +656,7 @@ Attributes
by the type provided in the `implements` attribute. by the type provided in the `implements` attribute.
Only one of the `tag` and `attribute` attributes can be specified. Only one of the `tag` and `attribute` attributes can be specified.
- `implements` _(**required**)_<br/> - `implements` _(**required**)_<br/>
The fully qualified name of the parent type limiting the type provided in the place specified by The fully qualified name of the parent type limiting the type provided in the place specified by
`tag` or `tag` or
`attribute`. `attribute`.
@ -723,6 +731,7 @@ Required
Attributes Attributes
: :
- `resource-bundle` _(optional; available since 2020.1)_<br/> - `resource-bundle` _(optional; available since 2020.1)_<br/>
Defines the dedicated actions resource bundle. Defines the dedicated actions resource bundle.
See [Localizing Actions and Groups](basic_action_system.md#localizing-actions-and-groups) See [Localizing Actions and Groups](basic_action_system.md#localizing-actions-and-groups)
for more details. for more details.
@ -779,6 +788,7 @@ Attributes
See [Working with Icons](icons.md) for more information See [Working with Icons](icons.md) for more information
about defining and using icons. about defining and using icons.
- `use-shortcut-of` _(optional)_<br/> - `use-shortcut-of` _(optional)_<br/>
The ID of the action whose keyboard shortcut this action will use. The ID of the action whose keyboard shortcut this action will use.
Children Children
@ -840,6 +850,7 @@ Attributes
- `before` - the action is placed before the action specified by the `relative-to-action` attribute - `before` - the action is placed before the action specified by the `relative-to-action` attribute
- `after` - the action is placed after the action specified by the `relative-to-action` attribute - `after` - the action is placed after the action specified by the `relative-to-action` attribute
- `relative-to-action` _(**required** if `anchor` is `before`/`after`)_<br/> - `relative-to-action` _(**required** if `anchor` is `before`/`after`)_<br/>
The action before or after which the current action is inserted. The action before or after which the current action is inserted.
Example Example
@ -877,6 +888,7 @@ Attributes
- `remove` _(optional)_<br/> - `remove` _(optional)_<br/>
Removes a shortcut from the specified action. Removes a shortcut from the specified action.
- `replace-all` _(optional)_<br/> - `replace-all` _(optional)_<br/>
Removes all keyboard and mouse shortcuts from the specified action before adding Removes all keyboard and mouse shortcuts from the specified action before adding
the specified shortcut. the specified shortcut.
@ -933,6 +945,7 @@ Attributes
- `remove` _(optional)_<br/> - `remove` _(optional)_<br/>
Removes a shortcut from the specified action. Removes a shortcut from the specified action.
- `replace-all` _(optional)_<br/> - `replace-all` _(optional)_<br/>
Removes all keyboard and mouse shortcuts from the specified action before adding Removes all keyboard and mouse shortcuts from the specified action before adding
the specified shortcut. the specified shortcut.
@ -984,6 +997,7 @@ Attributes
- `text` _(`text` or `use-text-of-place` is **required**)_<br/> - `text` _(`text` or `use-text-of-place` is **required**)_<br/>
Defines the text to be displayed for the action. Defines the text to be displayed for the action.
- `use-text-of-place` _(`text` or `use-text-of-place` is **required**)_<br/> - `use-text-of-place` _(`text` or `use-text-of-place` is **required**)_<br/>
Defines a location whose text should be displayed for this action. Defines a location whose text should be displayed for this action.
Examples Examples
@ -1020,6 +1034,7 @@ Attributes
- `key` _(`key` or `text` is **required**)_<br/> - `key` _(`key` or `text` is **required**)_<br/>
The key of the synonym text provided in a message bundle. The key of the synonym text provided in a message bundle.
- `text` _(`key` or `text` is **required**)_<br/> - `text` _(`key` or `text` is **required**)_<br/>
The synonym text. The synonym text.
Example Example
@ -1045,6 +1060,7 @@ Required
Attributes Attributes
: :
- `value` _(**required**)_<br/> - `value` _(**required**)_<br/>
The abbreviation value. The abbreviation value.
Example Example
@ -1104,6 +1120,7 @@ Attributes
- `use-shortcut-of` _(optional)_<br/> - `use-shortcut-of` _(optional)_<br/>
The ID of the action whose keyboard shortcut this group will use. The ID of the action whose keyboard shortcut this group will use.
- `searchable` _(optional; available since 2020.3)_<br/> - `searchable` _(optional; available since 2020.3)_<br/>
Boolean flag defining whether the group is displayed in <ui-path>Help&nbsp;|&nbsp;Find Action...</ui-path> Boolean flag defining whether the group is displayed in <ui-path>Help&nbsp;|&nbsp;Find Action...</ui-path>
or <ui-path>Navigate | Search Everywhere</ui-path> popups.<br/> or <ui-path>Navigate | Search Everywhere</ui-path> popups.<br/>
Default value: `true`. Default value: `true`.
@ -1160,6 +1177,7 @@ Required
Attributes Attributes
: :
- `ref` _(**required**)_<br/> - `ref` _(**required**)_<br/>
The ID of the action to add to a group. The ID of the action to add to a group.
Children Children
@ -1202,6 +1220,7 @@ Attributes
Text displayed on the separator. Text displayed on the separator.
Separator text is displayed only in specific contexts such as popup menus, toolbars, etc. Separator text is displayed only in specific contexts such as popup menus, toolbars, etc.
- `key` _(optional)_<br/> - `key` _(optional)_<br/>
The message key for the separator text. The message key for the separator text.
The message bundle for use should be registered via the `resource-bundle` attribute of The message bundle for use should be registered via the `resource-bundle` attribute of
the [`<actions>`](#idea-plugin__actions) element. the [`<actions>`](#idea-plugin__actions) element.
@ -1299,6 +1318,7 @@ Attributes
Boolean flag defining whether the listener should be instantiated in test mode.<br/> Boolean flag defining whether the listener should be instantiated in test mode.<br/>
Default value: `true`. Default value: `true`.
- `activeInHeadlessMode` _(optional)_<br/> - `activeInHeadlessMode` _(optional)_<br/>
Boolean flag defining whether the listener should be instantiated in headless mode.<br/> Boolean flag defining whether the listener should be instantiated in headless mode.<br/>
Default value: `true`. Default value: `true`.
@ -1473,6 +1493,7 @@ Attributes
- `name` _(**required**)_<br/> - `name` _(**required**)_<br/>
Option name. Option name.
- `value` _(**required**)_<br/> - `value` _(**required**)_<br/>
Option value. Option value.
##### `loadForDefaultProject` ##### `loadForDefaultProject`