diff --git a/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx b/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx index ecc73f98..10288453 100644 --- a/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx +++ b/src/vs/workbench/contrib/void/browser/react/src/sidebar-tsx/SidebarChat.tsx @@ -1336,8 +1336,9 @@ const toolNameToComponent: { [T in ToolName]: { name={`${child.name}${child.isDirectory ? '/' : ''}`} className='w-full overflow-auto py-1' onClick={() => { - commandService.executeCommand('workbench.view.explorer'); - explorerService.select(child.uri, true); + commandService.executeCommand('vscode.open', child.uri, { preview: true }) + // commandService.executeCommand('workbench.view.explorer'); // open in explorer folders view instead + // explorerService.select(child.uri, true); }} />))} {value.hasNextPage &&