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