summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/commands/ideCommand.ts
diff options
context:
space:
mode:
authorchristine betts <[email protected]>2025-08-12 20:08:47 +0000
committerGitHub <[email protected]>2025-08-12 20:08:47 +0000
commit74fd0841d0d7148127e586fce4c550a01ff40e90 (patch)
tree5c23d673ab220029c4111d30952ea35e21b4a317 /packages/cli/src/ui/commands/ideCommand.ts
parent8524cce7b9b31e852b2bbb4d5bf9a4843beec2b1 (diff)
[ide-mode] Update installation logic and nudge (#6068)
Diffstat (limited to 'packages/cli/src/ui/commands/ideCommand.ts')
-rw-r--r--packages/cli/src/ui/commands/ideCommand.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/cli/src/ui/commands/ideCommand.ts b/packages/cli/src/ui/commands/ideCommand.ts
index f53047ef..23af2e48 100644
--- a/packages/cli/src/ui/commands/ideCommand.ts
+++ b/packages/cli/src/ui/commands/ideCommand.ts
@@ -8,7 +8,7 @@ import {
Config,
DetectedIde,
IDEConnectionStatus,
- getIdeDisplayName,
+ getIdeInfo,
getIdeInstaller,
IdeClient,
type File,
@@ -132,7 +132,7 @@ export const ideCommand = (config: Config | null): SlashCommand | null => {
content: `IDE integration is not supported in your current environment. To use this feature, run Gemini CLI in one of these supported IDEs: ${Object.values(
DetectedIde,
)
- .map((ide) => getIdeDisplayName(ide))
+ .map((ide) => getIdeInfo(ide).displayName)
.join(', ')}`,
}) as const,
};