summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/commands/ideCommand.ts
diff options
context:
space:
mode:
authorchristine betts <[email protected]>2025-08-14 14:57:36 +0000
committerGitHub <[email protected]>2025-08-14 14:57:36 +0000
commitd6403c67ee18971829736b78cca354f088f0aeee (patch)
treec397bef414a5cf705f42519fbd8870ffa300dcc4 /packages/cli/src/ui/commands/ideCommand.ts
parent2fc1ef7d59780bae9a1705cafbd78bd2567f117e (diff)
[ide-mode] Suggest the extension name in the installation messages (#6182)
Diffstat (limited to 'packages/cli/src/ui/commands/ideCommand.ts')
-rw-r--r--packages/cli/src/ui/commands/ideCommand.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/cli/src/ui/commands/ideCommand.ts b/packages/cli/src/ui/commands/ideCommand.ts
index 2dfad33c..b7cbea3d 100644
--- a/packages/cli/src/ui/commands/ideCommand.ts
+++ b/packages/cli/src/ui/commands/ideCommand.ts
@@ -7,6 +7,7 @@
import {
Config,
DetectedIde,
+ GEMINI_CLI_COMPANION_EXTENSION_NAME,
IDEConnectionStatus,
getIdeInfo,
getIdeInstaller,
@@ -170,7 +171,7 @@ export const ideCommand = (config: Config | null): SlashCommand | null => {
context.ui.addItem(
{
type: 'error',
- text: `No installer is available for ${ideClient.getDetectedIdeDisplayName()}. Please install the IDE companion manually from its marketplace.`,
+ text: `No installer is available for ${ideClient.getDetectedIdeDisplayName()}. Please install the '${GEMINI_CLI_COMPANION_EXTENSION_NAME}' extension manually from the marketplace.`,
},
Date.now(),
);