File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 123
123
"command" : " roo-cline.addToContext" ,
124
124
"title" : " Roo Code: Add To Context" ,
125
125
"category" : " Roo Code"
126
+ },
127
+ {
128
+ "command" : " roo-cline.focus" ,
129
+ "title" : " Roo Code: Bring To Focus" ,
130
+ "category" : " Roo Code"
126
131
}
127
132
],
128
133
"menus" : {
Original file line number Diff line number Diff line change @@ -272,6 +272,12 @@ export function activate(context: vscode.ExtensionContext) {
272
272
273
273
registerCodeAction ( context , "roo-cline.addToContext" , "ADD_TO_CONTEXT" )
274
274
275
+ context . subscriptions . push (
276
+ vscode . commands . registerCommand ( "roo-cline.focus" , async ( ...args : any [ ] ) => {
277
+ await vscode . commands . executeCommand ( "roo-cline.SidebarProvider.focus" )
278
+ } ) ,
279
+ )
280
+
275
281
return createClineAPI ( outputChannel , sidebarProvider )
276
282
}
277
283
You can’t perform that action at this time.
0 commit comments