diff options
| author | Shreya Keshive <[email protected]> | 2025-07-15 10:19:59 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-15 14:19:59 +0000 |
| commit | b09bc6656080d4d12e1d06734aae2ec33af5c1ed (patch) | |
| tree | 5140eabe1f10fb6084d9ded3d4d59282cfbc0bc7 /packages/cli/src/config/config.ts | |
| parent | 97cc1e641805beefe3abe3bd7bd57b630b22ecd2 (diff) | |
Adds the user's active file in the IDE to the footer (#4154)
Diffstat (limited to 'packages/cli/src/config/config.ts')
| -rw-r--r-- | packages/cli/src/config/config.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/cli/src/config/config.ts b/packages/cli/src/config/config.ts index 626f23e1..a5eb327d 100644 --- a/packages/cli/src/config/config.ts +++ b/packages/cli/src/config/config.ts @@ -18,6 +18,7 @@ import { FileDiscoveryService, TelemetryTarget, MCPServerConfig, + IDE_SERVER_NAME, } from '@google/gemini-cli-core'; import { Settings } from './settings.js'; @@ -285,7 +286,7 @@ export async function loadCliConfig( } if (ideMode) { - mcpServers['_ide_server'] = new MCPServerConfig( + mcpServers[IDE_SERVER_NAME] = new MCPServerConfig( undefined, // command undefined, // args undefined, // env |
