summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorchristine betts <[email protected]>2025-08-21 22:29:15 +0000
committerGitHub <[email protected]>2025-08-21 22:29:15 +0000
commit10286934e6a549dcad557adecfc087552e13c983 (patch)
treefe6a61cf3158918253d18d891dab52f4c9b7a33b /docs
parent679acc45b222986032a01aebbffcddf756573f14 (diff)
Introduce initial screen reader mode handling and flag (#6653)
Diffstat (limited to 'docs')
-rw-r--r--docs/cli/configuration.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/cli/configuration.md b/docs/cli/configuration.md
index fd6f69f0..af73661b 100644
--- a/docs/cli/configuration.md
+++ b/docs/cli/configuration.md
@@ -308,6 +308,20 @@ In addition to a project settings file, a project's `.gemini` directory can cont
"showLineNumbers": false
```
+- **`accessibility`** (object):
+ - **Description:** Configures accessibility features for the CLI.
+ - **Properties:**
+ - **`screenReader`** (boolean): Enables screen reader mode, which adjusts the TUI for better compatibility with screen readers. This can also be enabled with the `--screen-reader` command-line flag, which will take precedence over the setting.
+ - **`disableLoadingPhrases`** (boolean): Disables the display of loading phrases during operations.
+ - **Default:** `{"screenReader": false, "disableLoadingPhrases": false}`
+ - **Example:**
+ ```json
+ "accessibility": {
+ "screenReader": true,
+ "disableLoadingPhrases": true
+ }
+ ```
+
### Example `settings.json`:
```json
@@ -475,6 +489,8 @@ Arguments passed directly when running the CLI can override other configurations
- Can be specified multiple times or as comma-separated values.
- 5 directories can be added at maximum.
- Example: `--include-directories /path/to/project1,/path/to/project2` or `--include-directories /path/to/project1 --include-directories /path/to/project2`
+- **`--screen-reader`**:
+ - Enables screen reader mode for accessibility.
- **`--version`**:
- Displays the version of the CLI.