diff --git a/docs/cli/settings.md b/docs/cli/settings.md index faf3fca3f0..c13262e86b 100644 --- a/docs/cli/settings.md +++ b/docs/cli/settings.md @@ -57,7 +57,7 @@ they appear in the UI. | Show Shortcuts Hint | `ui.showShortcutsHint` | Show the "? for shortcuts" hint above the input. | `true` | | Hide Banner | `ui.hideBanner` | Hide the application banner | `false` | | Hide Context Summary | `ui.hideContextSummary` | Hide the context summary (GEMINI.md, MCP servers) above the input. | `false` | -| Hide CWD | `ui.footer.hideCWD` | Hide the current working directory path in the footer. | `false` | +| Hide Workspace Path | `ui.footer.hideCWD` | Hide the workspace path in the footer. | `false` | | Hide Sandbox Status | `ui.footer.hideSandboxStatus` | Hide the sandbox status indicator in the footer. | `false` | | Hide Model Info | `ui.footer.hideModelInfo` | Hide the model name and context usage in the footer. | `false` | | Hide Context Window Percentage | `ui.footer.hideContextPercentage` | Hides the context window remaining percentage. | `true` | diff --git a/docs/reference/configuration.md b/docs/reference/configuration.md index c7c390c79c..cc98e6739b 100644 --- a/docs/reference/configuration.md +++ b/docs/reference/configuration.md @@ -258,7 +258,7 @@ their corresponding top-level category object in your `settings.json` file. - **Default:** `false` - **`ui.footer.hideCWD`** (boolean): - - **Description:** Hide the current working directory path in the footer. + - **Description:** Hide the workspace path in the footer. - **Default:** `false` - **`ui.footer.hideSandboxStatus`** (boolean): diff --git a/schemas/settings.schema.json b/schemas/settings.schema.json index b93be1f0e7..90cbc8ddb8 100644 --- a/schemas/settings.schema.json +++ b/schemas/settings.schema.json @@ -328,9 +328,9 @@ "type": "object", "properties": { "hideCWD": { - "title": "Hide CWD", - "description": "Hide the current working directory path in the footer.", - "markdownDescription": "Hide the current working directory path in the footer.\n\n- Category: `UI`\n- Requires restart: `no`\n- Default: `false`", + "title": "Hide Workspace Path", + "description": "Hide the workspace path in the footer.", + "markdownDescription": "Hide the workspace path in the footer.\n\n- Category: `UI`\n- Requires restart: `no`\n- Default: `false`", "default": false, "type": "boolean" },