diff --git a/docs/cli/settings.md b/docs/cli/settings.md index 9893f4cacb..df1784cf43 100644 --- a/docs/cli/settings.md +++ b/docs/cli/settings.md @@ -63,7 +63,7 @@ they appear in the UI. | Use Background Color | `ui.useBackgroundColor` | Whether to use background colors in the UI. | `true` | | Incremental Rendering | `ui.incrementalRendering` | Enable incremental rendering for the UI. This option will reduce flickering but may cause rendering artifacts. Only supported when useAlternateBuffer is enabled. | `true` | | Show Spinner | `ui.showSpinner` | Show the spinner during operations. | `true` | -| Enable Compact Tool Output | `ui.enableCompactToolOutput` | Render tool outputs in a compact, single-line format when possible. | `true` | +| Compact Tool Output | `ui.enableCompactToolOutput` | Render tool outputs in a compact, single-line format when possible. | `true` | | Enable Loading Phrases | `ui.accessibility.enableLoadingPhrases` | Enable loading phrases during operations. | `true` | | Screen Reader Mode | `ui.accessibility.screenReader` | Render output in plain-text to be more screen reader accessible | `false` | diff --git a/packages/cli/src/config/settingsSchema.ts b/packages/cli/src/config/settingsSchema.ts index 880b6cf63d..89f89d323f 100644 --- a/packages/cli/src/config/settingsSchema.ts +++ b/packages/cli/src/config/settingsSchema.ts @@ -593,7 +593,7 @@ const SETTINGS_SCHEMA = { }, enableCompactToolOutput: { type: 'boolean', - label: 'Enable Compact Tool Output', + label: 'Compact Tool Output', category: 'UI', requiresRestart: false, default: true, diff --git a/schemas/settings.schema.json b/schemas/settings.schema.json index 2575f97be7..d46f27771e 100644 --- a/schemas/settings.schema.json +++ b/schemas/settings.schema.json @@ -352,7 +352,7 @@ "type": "boolean" }, "enableCompactToolOutput": { - "title": "Enable Compact Tool Output", + "title": "Compact Tool Output", "description": "Render tool outputs in a compact, single-line format when possible.", "markdownDescription": "Render tool outputs in a compact, single-line format when possible.\n\n- Category: `UI`\n- Requires restart: `no`\n- Default: `true`", "default": true,