From 56a5ce514987f7e9fc5394b83d10dca8bad98ddd Mon Sep 17 00:00:00 2001 From: Himanshu Date: Sat, 8 Feb 2025 21:28:22 +0530 Subject: [PATCH] set view commands --- src/vs/workbench/browser/parts/paneCompositePart.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/vs/workbench/browser/parts/paneCompositePart.ts b/src/vs/workbench/browser/parts/paneCompositePart.ts index f3599d1d396cb..67a01c2b510d0 100644 --- a/src/vs/workbench/browser/parts/paneCompositePart.ts +++ b/src/vs/workbench/browser/parts/paneCompositePart.ts @@ -116,10 +116,10 @@ interface IInventoryIcon { class InventoryIcons { private static readonly icons: readonly IInventoryIcon[] = [ - { id: 'chat', icon: 'inventory-chat-icon', label: 'Chat', command: 'workbench.action.togglePanel', width: 70 }, - { id: 'creator', icon: 'inventory-creator-icon', label: 'Creator', command: 'workbench.action.toggleSidebarVisibility', width: 80 }, - { id: 'search', icon: 'inventory-search-icon', label: 'Search', command: 'workbench.action.findInFiles', width: 75 }, - { id: 'memory', icon: 'inventory-memory-icon', label: 'Memory', command: 'workbench.action.toggleZenMode', width: 85 } + { id: 'chat', icon: 'inventory-chat-icon', label: 'Chat', command: 'pearai.focusContinueInputWithoutClear', width: 70 }, + { id: 'creator', icon: 'inventory-creator-icon', label: 'Creator', command: 'pearai.focusCreatorView', width: 80 }, + { id: 'search', icon: 'inventory-search-icon', label: 'Search', command: 'pearai.focusPearAISearchView', width: 75 }, + { id: 'memory', icon: 'inventory-memory-icon', label: 'Memory', command: 'pearai.focusPearAIMem0View', width: 85 } ] as const; static getAll(): readonly IInventoryIcon[] {