summaryrefslogtreecommitdiff
path: root/docs/cli
diff options
context:
space:
mode:
authorBilly Biggs <[email protected]>2025-06-21 18:23:35 -0700
committerGitHub <[email protected]>2025-06-22 01:23:35 +0000
commit0779697da6caeae09b67a146013612a34f369b74 (patch)
tree665d2b22773b28843648b01fd74b5f0dcb392c6f /docs/cli
parent63f6a497cba61299a1c24aa96795a55479740ac6 (diff)
Add setting enableRecursiveFileSearch to control @-file completion (#1290)
Diffstat (limited to 'docs/cli')
-rw-r--r--docs/cli/configuration.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/cli/configuration.md b/docs/cli/configuration.md
index e3c379b0..b4dd2e95 100644
--- a/docs/cli/configuration.md
+++ b/docs/cli/configuration.md
@@ -56,13 +56,15 @@ In addition to a project settings file, a project's `.gemini` directory can cont
- **`fileFiltering`** (object):
- **Description:** Controls git-aware file filtering behavior for @ commands and file discovery tools.
- - **Default:** `"respectGitIgnore": true`
+ - **Default:** `"respectGitIgnore": true, "enableRecursiveFileSearch": true`
- **Properties:**
- **`respectGitIgnore`** (boolean): Whether to respect .gitignore patterns when discovering files. When set to `true`, git-ignored files (like `node_modules/`, `dist/`, `.env`) are automatically excluded from @ commands and file listing operations.
+ - **`enableRecursiveFileSearch`** (boolean): Whether to enable searching recursively for filenames under the current tree when completing @ prefixes in the prompt.
- **Example:**
```json
"fileFiltering": {
- "respectGitIgnore": true
+ "respectGitIgnore": true,
+ "enableRecursiveFileSearch": false
}
```