@@ -79,17 +79,17 @@ export function activate(context: vscode.ExtensionContext) {
79
79
} ) ,
80
80
)
81
81
82
- context . subscriptions . push (
83
- vscode . commands . registerCommand ( "roo-cline.mcpButtonClicked" , ( ) => {
84
- sidebarProvider . postMessageToWebview ( { type : "action" , action : "mcpButtonClicked" } )
85
- } ) ,
86
- )
87
-
88
- context . subscriptions . push (
89
- vscode . commands . registerCommand ( "roo-cline.promptsButtonClicked" , ( ) => {
90
- sidebarProvider . postMessageToWebview ( { type : "action" , action : "promptsButtonClicked" } )
91
- } ) ,
92
- )
82
+ // context.subscriptions.push(
83
+ // vscode.commands.registerCommand("roo-cline.mcpButtonClicked", () => {
84
+ // sidebarProvider.postMessageToWebview({ type: "action", action: "mcpButtonClicked" })
85
+ // }),
86
+ // )
87
+
88
+ // context.subscriptions.push(
89
+ // vscode.commands.registerCommand("roo-cline.promptsButtonClicked", () => {
90
+ // sidebarProvider.postMessageToWebview({ type: "action", action: "promptsButtonClicked" })
91
+ // }),
92
+ // )
93
93
94
94
const openClineInNewTab = async ( ) => {
95
95
outputChannel . appendLine ( "Opening Roo Code in new tab" )
@@ -124,21 +124,21 @@ export function activate(context: vscode.ExtensionContext) {
124
124
await vscode . commands . executeCommand ( "workbench.action.lockEditorGroup" )
125
125
}
126
126
127
- context . subscriptions . push ( vscode . commands . registerCommand ( "roo-cline.popoutButtonClicked" , openClineInNewTab ) )
128
- context . subscriptions . push ( vscode . commands . registerCommand ( "roo-cline.openInNewTab" , openClineInNewTab ) )
129
-
130
- context . subscriptions . push (
131
- vscode . commands . registerCommand ( "roo-cline.settingsButtonClicked" , ( ) => {
132
- //vscode.window.showInformationMessage(message)
133
- sidebarProvider . postMessageToWebview ( { type : "action" , action : "settingsButtonClicked" } )
134
- } ) ,
135
- )
136
-
137
- context . subscriptions . push (
138
- vscode . commands . registerCommand ( "roo-cline.historyButtonClicked" , ( ) => {
139
- sidebarProvider . postMessageToWebview ( { type : "action" , action : "historyButtonClicked" } )
140
- } ) ,
141
- )
127
+ // context.subscriptions.push(vscode.commands.registerCommand("roo-cline.popoutButtonClicked", openClineInNewTab))
128
+ // context.subscriptions.push(vscode.commands.registerCommand("roo-cline.openInNewTab", openClineInNewTab))
129
+
130
+ // context.subscriptions.push(
131
+ // vscode.commands.registerCommand("roo-cline.settingsButtonClicked", () => {
132
+ // //vscode.window.showInformationMessage(message)
133
+ // sidebarProvider.postMessageToWebview({ type: "action", action: "settingsButtonClicked" })
134
+ // }),
135
+ // )
136
+
137
+ // context.subscriptions.push(
138
+ // vscode.commands.registerCommand("roo-cline.historyButtonClicked", () => {
139
+ // sidebarProvider.postMessageToWebview({ type: "action", action: "historyButtonClicked" })
140
+ // }),
141
+ // )
142
142
143
143
/*
144
144
We use the text document content provider API to show the left side for diff view by creating a virtual document for the original content. This makes it readonly so users know to edit the right side if they want to keep their changes.
0 commit comments