Update view names

This commit is contained in:
Saoud Rizwan
2024-07-06 03:25:34 -04:00
parent 4916b2c28d
commit 2feedd766b
4 changed files with 14 additions and 29 deletions

View File

@@ -34,21 +34,12 @@ export function activate(context: vscode.ExtensionContext) {
context.subscriptions.push(vscode.window.registerWebviewViewProvider(SidebarProvider.viewType, provider))
context.subscriptions.push(
vscode.commands.registerCommand("vscodeSidebar.menu.view", () => {
const message = "Menu/Title of extension is clicked !"
vscode.commands.registerCommand("claude-dev.menuButtonTapped", () => {
const message = "claude-dev.menuButtonTapped!"
vscode.window.showInformationMessage(message)
})
)
// Command has been defined in the package.json file
// Provide the implementation of the command with registerCommand
// CommandId parameter must match the command field in package.json
let openWebView = vscode.commands.registerCommand("vscodeSidebar.openview", () => {
// Display a message box to the user
vscode.window.showInformationMessage('Command " Sidebar View [vscodeSidebar.openview] " called.')
})
context.subscriptions.push(openWebView)
}
// This method is called when your extension is deactivated