mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 12:21:13 -05:00
Add task history
This commit is contained in:
@@ -49,7 +49,7 @@ export function activate(context: vscode.ExtensionContext) {
|
||||
outputChannel.appendLine("Plus button tapped")
|
||||
await sidebarProvider.clearTask()
|
||||
await sidebarProvider.postStateToWebview()
|
||||
await sidebarProvider.postMessageToWebview({ type: "action", action: "plusButtonTapped" })
|
||||
await sidebarProvider.postMessageToWebview({ type: "action", action: "chatButtonTapped" })
|
||||
})
|
||||
)
|
||||
|
||||
@@ -87,6 +87,12 @@ export function activate(context: vscode.ExtensionContext) {
|
||||
})
|
||||
)
|
||||
|
||||
context.subscriptions.push(
|
||||
vscode.commands.registerCommand("claude-dev.historyButtonTapped", () => {
|
||||
sidebarProvider.postMessageToWebview({ type: "action", action: "historyButtonTapped" })
|
||||
})
|
||||
)
|
||||
|
||||
/*
|
||||
We use the text document content provider API to show a diff view for new files/edits by creating a virtual document for the new content.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user