summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/hooks/slashCommandProcessor.ts
diff options
context:
space:
mode:
authorHarold Mciver <[email protected]>2025-07-16 11:56:05 -0400
committerGitHub <[email protected]>2025-07-16 15:56:05 +0000
commitddcac4201d13bfa948c900f10f8c6cd227099c7b (patch)
treed76faf860c45e5685cca281713407c210a7d0ec1 /packages/cli/src/ui/hooks/slashCommandProcessor.ts
parentf4cd0055fd7fcb86bc7dddfd72aa8c6ed78a923e (diff)
update `/docs` to new slash command arch (#4133)
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Diffstat (limited to 'packages/cli/src/ui/hooks/slashCommandProcessor.ts')
-rw-r--r--packages/cli/src/ui/hooks/slashCommandProcessor.ts21
1 files changed, 0 insertions, 21 deletions
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
@@ -201,27 +201,6 @@ export const useSlashCommandProcessor = (
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',
action: (_mainCommand, _subCommand, _args) => openEditorDialog(),