mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-28 05:55:17 -07:00
Regenerate settings schema and docs
This commit is contained in:
@@ -42,6 +42,8 @@ they appear in the UI.
|
|||||||
| UI Label | Setting | Description | Default |
|
| UI Label | Setting | Description | Default |
|
||||||
| ------------------------------ | --------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
|
| ------------------------------ | --------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
|
||||||
| Hide Window Title | `ui.hideWindowTitle` | Hide the window title bar | `false` |
|
| Hide Window Title | `ui.hideWindowTitle` | Hide the window title bar | `false` |
|
||||||
|
| Show Inline Thinking (Full) | `ui.showInlineThinkingFull` | Show full model thinking details inline. | `false` |
|
||||||
|
| Show Inline Thinking (Summary) | `ui.showInlineThinkingSummary` | Show a short summary of model thinking inline. | `false` |
|
||||||
| Show Thoughts in Title | `ui.showStatusInTitle` | Show Gemini CLI model thoughts in the terminal window title during the working phase | `false` |
|
| Show Thoughts in Title | `ui.showStatusInTitle` | Show Gemini CLI model thoughts in the terminal window title during the working phase | `false` |
|
||||||
| Dynamic Window Title | `ui.dynamicWindowTitle` | Update the terminal window title with current status icons (Ready: ◇, Action Required: ✋, Working: ✦) | `true` |
|
| 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 Home Directory Warning | `ui.showHomeDirectoryWarning` | Show a warning when running Gemini CLI in the home directory. | `true` |
|
||||||
|
|||||||
@@ -180,7 +180,16 @@ their corresponding top-level category object in your `settings.json` file.
|
|||||||
- **Requires restart:** Yes
|
- **Requires restart:** Yes
|
||||||
|
|
||||||
- **`ui.showInlineThinking`** (boolean):
|
- **`ui.showInlineThinking`** (boolean):
|
||||||
- **Description:** Show model thinking summaries inline in the conversation.
|
- **Description:** Show model thinking summaries inline in the conversation
|
||||||
|
(deprecated; prefer the specific thinking modes).
|
||||||
|
- **Default:** `false`
|
||||||
|
|
||||||
|
- **`ui.showInlineThinkingFull`** (boolean):
|
||||||
|
- **Description:** Show full model thinking details inline.
|
||||||
|
- **Default:** `false`
|
||||||
|
|
||||||
|
- **`ui.showInlineThinkingSummary`** (boolean):
|
||||||
|
- **Description:** Show a short summary of model thinking inline.
|
||||||
- **Default:** `false`
|
- **Default:** `false`
|
||||||
|
|
||||||
- **`ui.showStatusInTitle`** (boolean):
|
- **`ui.showStatusInTitle`** (boolean):
|
||||||
|
|||||||
@@ -189,8 +189,22 @@
|
|||||||
},
|
},
|
||||||
"showInlineThinking": {
|
"showInlineThinking": {
|
||||||
"title": "Show Inline Thinking",
|
"title": "Show Inline Thinking",
|
||||||
"description": "Show model thinking summaries inline in the conversation.",
|
"description": "Show model thinking summaries inline in the conversation (deprecated; prefer the specific thinking modes).",
|
||||||
"markdownDescription": "Show model thinking summaries inline in the conversation.\n\n- Category: `UI`\n- Requires restart: `no`\n- Default: `false`",
|
"markdownDescription": "Show model thinking summaries inline in the conversation (deprecated; prefer the specific thinking modes).\n\n- Category: `UI`\n- Requires restart: `no`\n- Default: `false`",
|
||||||
|
"default": false,
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"showInlineThinkingFull": {
|
||||||
|
"title": "Show Inline Thinking (Full)",
|
||||||
|
"description": "Show full model thinking details inline.",
|
||||||
|
"markdownDescription": "Show full model thinking details inline.\n\n- Category: `UI`\n- Requires restart: `no`\n- Default: `false`",
|
||||||
|
"default": false,
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"showInlineThinkingSummary": {
|
||||||
|
"title": "Show Inline Thinking (Summary)",
|
||||||
|
"description": "Show a short summary of model thinking inline.",
|
||||||
|
"markdownDescription": "Show a short summary of model thinking inline.\n\n- Category: `UI`\n- Requires restart: `no`\n- Default: `false`",
|
||||||
"default": false,
|
"default": false,
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user