[ide-mode] Suggest the extension name in the installation messages (#6182)

This commit is contained in:
christine betts
2025-08-14 14:57:36 +00:00
committed by GitHub
parent 2fc1ef7d59
commit d6403c67ee
4 changed files with 13 additions and 3 deletions

View File

@@ -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(),
);