chore(cli): regenerate settings schema/docs and fix final lint error

This commit is contained in:
Keith Guerin
2026-03-12 22:02:51 -07:00
parent faa180b9d8
commit 5909c2f663
4 changed files with 30 additions and 32 deletions

View File

@@ -54,7 +54,7 @@ they appear in the UI.
| Dynamic Window Title | `ui.dynamicWindowTitle` | Update the terminal window title with current status icons (Ready: ◇, Action Required: ✋, Working: ✦) | `true` |
| Show Home Directory Warning | `ui.showHomeDirectoryWarning` | Show a warning when running Gemini CLI in the home directory. | `true` |
| Show Compatibility Warnings | `ui.showCompatibilityWarnings` | Show warnings about terminal or OS compatibility issues. | `true` |
| Hide Tips | `ui.hideTips` | Hide helpful tips in the UI | `false` |
| Hide Startup Tips | `ui.hideTips` | Hide the introductory tips shown at the top of the screen. | `false` |
| Escape Pasted @ Symbols | `ui.escapePastedAtSymbols` | When enabled, @ symbols in pasted text are escaped to prevent unintended @path expansion. | `false` |
| Show Shortcuts Hint | `ui.showShortcutsHint` | Show basic shortcut help ('?') when the status line is idle. | `true` |
| Hide Banner | `ui.hideBanner` | Hide the application banner | `false` |
@@ -73,8 +73,8 @@ 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` |
| Show Tips | `ui.showStatusTips` | Show helpful tips in the footer while the model is working. | `true` |
| Show Wit | `ui.showStatusWit` | Show witty loading phrases in the footer while the model is working. | `false` |
| Hide Footer Tips | `ui.hideStatusTips` | Hide helpful tips in the footer while the model is working. | `false` |
| Hide Footer Wit | `ui.hideStatusWit` | Hide witty loading phrases in the footer while the model is working. | `true` |
| Error Verbosity | `ui.errorVerbosity` | Controls whether recoverable errors are hidden (low) or fully shown (full). | `"low"` |
| Screen Reader Mode | `ui.accessibility.screenReader` | Render output in plain-text to be more screen reader accessible | `false` |

View File

@@ -242,7 +242,7 @@ their corresponding top-level category object in your `settings.json` file.
- **Requires restart:** Yes
- **`ui.hideTips`** (boolean):
- **Description:** Hide helpful tips in the UI
- **Description:** Hide the introductory tips shown at the top of the screen.
- **Default:** `false`
- **`ui.hideIntroTips`** (boolean):
@@ -340,24 +340,24 @@ their corresponding top-level category object in your `settings.json` file.
- **Description:** Show the spinner during operations.
- **Default:** `true`
- **`ui.showStatusTips`** (boolean):
- **Description:** Show helpful tips in the footer while the model is working.
- **Default:** `true`
- **`ui.showStatusWit`** (boolean):
- **Description:** Show witty loading phrases in the footer while the model is
working.
- **`ui.hideStatusTips`** (boolean):
- **Description:** Hide helpful tips in the footer while the model is working.
- **Default:** `false`
- **`ui.hideStatusWit`** (boolean):
- **Description:** Hide witty loading phrases in the footer while the model is
working.
- **Default:** `true`
- **`ui.statusHints`** (enum):
- **Description:** @deprecated Use ui.showStatusTips and ui.showStatusWit
- **Description:** @deprecated Use ui.hideStatusTips and ui.hideStatusWit
instead. What to show in the status line: tips, witty comments, both, or off
(fallback to shortcuts help).
- **Default:** `"tips"`
- **Values:** `"tips"`, `"witty"`, `"all"`, `"off"`
- **`ui.loadingPhrases`** (enum):
- **Description:** @deprecated Use ui.showStatusTips and ui.showStatusWit
- **Description:** @deprecated Use ui.hideStatusTips and ui.hideStatusWit
instead. What to show in the status line: tips, witty comments, both, or off
(fallback to shortcuts help).
- **Default:** `"tips"`