diff options
| author | Allen Hutchison <[email protected]> | 2025-06-14 00:00:24 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-14 07:00:24 +0000 |
| commit | 643bdf31d50868e5644a1257afabed612ba317c7 (patch) | |
| tree | 987d7e3600987c32c21a017d1ee1b3b7f14dae6c /docs/cli/configuration.md | |
| parent | d5c6bb9740a52d87b71d812e698d0e88abf10caa (diff) | |
feat: Add custom URL support for the /bug command (#1017)
Diffstat (limited to 'docs/cli/configuration.md')
| -rw-r--r-- | docs/cli/configuration.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/cli/configuration.md b/docs/cli/configuration.md index 1b880e0f..f7925725 100644 --- a/docs/cli/configuration.md +++ b/docs/cli/configuration.md @@ -44,6 +44,18 @@ When you create a `.gemini/settings.json` file for project-specific settings, or - **Default:** `GEMINI.md` - **Example:** `"contextFileName": "AGENTS.md"` +- **`bugCommand`** (object, optional): + + - **Description:** Overrides the default URL for the `/bug` command. + - **Properties:** + - **`urlTemplate`** (string, required): A URL that can contain `{title}` and `{body}` placeholders. + - **Example:** + ```json + "bugCommand": { + "urlTemplate": "https://bug.example.com/new?title={title}&body={body}" + } + ``` + - **`fileFiltering`** (object, optional): - **Description:** Controls git-aware file filtering behavior for @ commands and file discovery tools. |
