From ddcac4201d13bfa948c900f10f8c6cd227099c7b Mon Sep 17 00:00:00 2001 From: Harold Mciver Date: Wed, 16 Jul 2025 11:56:05 -0400 Subject: update `/docs` to new slash command arch (#4133) Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- packages/cli/src/ui/hooks/slashCommandProcessor.ts | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'packages/cli/src/ui/hooks') diff --git a/packages/cli/src/ui/hooks/slashCommandProcessor.ts b/packages/cli/src/ui/hooks/slashCommandProcessor.ts index 8355ea19..8fa3f880 100644 --- a/packages/cli/src/ui/hooks/slashCommandProcessor.ts +++ b/packages/cli/src/ui/hooks/slashCommandProcessor.ts @@ -200,27 +200,6 @@ export const useSlashCommandProcessor = ( const legacyCommands: LegacySlashCommand[] = useMemo(() => { const commands: LegacySlashCommand[] = [ // `/help` and `/clear` have been migrated and REMOVED from this list. - { - name: 'docs', - description: 'open full Gemini CLI documentation in your browser', - action: async (_mainCommand, _subCommand, _args) => { - const docsUrl = 'https://goo.gle/gemini-cli-docs'; - if (process.env.SANDBOX && process.env.SANDBOX !== 'sandbox-exec') { - addMessage({ - type: MessageType.INFO, - content: `Please open the following URL in your browser to view the documentation:\n${docsUrl}`, - timestamp: new Date(), - }); - } else { - addMessage({ - type: MessageType.INFO, - content: `Opening documentation in your browser: ${docsUrl}`, - timestamp: new Date(), - }); - await open(docsUrl); - } - }, - }, { name: 'editor', description: 'set external editor preference', -- cgit v1.2.3