Remove help button from title bar (#3150)

This commit is contained in:
Matt Rubens 2025-05-03 13:45:12 -04:00 committed by GitHub
parent 98adb04f98
commit 40ee5cf154
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 20 deletions

View file

@ -110,11 +110,6 @@
"title": "%command.settings.title%",
"icon": "$(settings-gear)"
},
{
"command": "roo-cline.helpButtonClicked",
"title": "%command.documentation.title%",
"icon": "$(question)"
},
{
"command": "roo-cline.openInNewTab",
"title": "%command.openInNewTab.title%",
@ -247,11 +242,6 @@
"command": "roo-cline.settingsButtonClicked",
"group": "navigation@6",
"when": "view == roo-cline.SidebarProvider"
},
{
"command": "roo-cline.helpButtonClicked",
"group": "navigation@7",
"when": "view == roo-cline.SidebarProvider"
}
],
"editor/title": [
@ -284,11 +274,6 @@
"command": "roo-cline.settingsButtonClicked",
"group": "navigation@6",
"when": "activeWebviewPanelId == roo-cline.TabPanelProvider"
},
{
"command": "roo-cline.helpButtonClicked",
"group": "navigation@7",
"when": "activeWebviewPanelId == roo-cline.TabPanelProvider"
}
]
},

View file

@ -128,11 +128,6 @@ const getCommandsMap = ({ context, outputChannel, provider }: RegisterCommandOpt
visibleProvider.postMessageToWebview({ type: "action", action: "historyButtonClicked" })
},
"roo-cline.helpButtonClicked": () => {
telemetryService.captureTitleButtonClicked("help")
vscode.env.openExternal(vscode.Uri.parse("https://docs.roocode.com"))
},
"roo-cline.showHumanRelayDialog": (params: { requestId: string; promptText: string }) => {
const panel = getPanel()