mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-11 05:30:03 -05:00
Fix chat.plugins.enabledPlugins setting description for general use (#321494)
Fix chat.plugins.enabledPlugins setting description to be less enterprise-focused Remove 'Enterprise-managed' prefix, add link to agent plugins docs, and reference the marketplace setting for clarity. The setting controls plugin enablement for all users, not just enterprise scenarios. Fixes #321479 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -955,7 +955,7 @@ configurationRegistry.registerConfiguration({
|
||||
[ChatConfiguration.EnabledPlugins]: {
|
||||
type: 'object',
|
||||
additionalProperties: { type: 'boolean' },
|
||||
markdownDescription: nls.localize('chat.plugins.enabledPlugins', "Enterprise-managed plugin enablement. Keys are plugin IDs in `<plugin>@<marketplace>` form (resolved to Copilot CLI install paths); values enable (`true`) or disable (`false`) the plugin. Discovered alongside the path-keyed entries in {0}. When set by policy, also restricts which marketplace-discovered plugins are allowed to load (only IDs mapped to `true` here pass the gate).", `\`#${ChatConfiguration.PluginLocations}#\``),
|
||||
markdownDescription: nls.localize('chat.plugins.enabledPlugins', "Controls which [agent plugins](https://aka.ms/vscode-agent-plugins) are enabled or disabled. Keys are plugin IDs in `<plugin>@<marketplace>` form (where marketplace is defined in {1}); values enable (`true`) or disable (`false`) the plugin. Discovered alongside the path-keyed entries in {0}. When set by policy, only plugins mapped to `true` here are allowed to load.", `\`#${ChatConfiguration.PluginLocations}#\``, `\`#${ChatConfiguration.PluginMarketplaces}#\``),
|
||||
scope: ConfigurationScope.APPLICATION,
|
||||
policy: {
|
||||
name: 'ChatEnabledPlugins',
|
||||
|
||||
Reference in New Issue
Block a user