File tree Expand file tree Collapse file tree 1 file changed +21
-3
lines changed
Expand file tree Collapse file tree 1 file changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -201,11 +201,29 @@ export function activate(context: vscode.ExtensionContext) {
201201 }
202202
203203 // Register code action commands
204- registerCodeAction ( context , "roo-cline.explainCode" , "EXPLAIN" )
204+ registerCodeAction (
205+ context ,
206+ "roo-cline.explainCode" ,
207+ "EXPLAIN" ,
208+ "What would you like Roo to explain?" ,
209+ "E.g. How does the error handling work?" ,
210+ )
205211
206- registerCodeAction ( context , "roo-cline.fixCode" , "FIX" )
212+ registerCodeAction (
213+ context ,
214+ "roo-cline.fixCode" ,
215+ "FIX" ,
216+ "What would you like Roo to fix?" ,
217+ "E.g. Maintain backward compatibility" ,
218+ )
207219
208- registerCodeAction ( context , "roo-cline.improveCode" , "IMPROVE" )
220+ registerCodeAction (
221+ context ,
222+ "roo-cline.improveCode" ,
223+ "IMPROVE" ,
224+ "What would you like Roo to improve?" ,
225+ "E.g. Focus on performance optimization" ,
226+ )
209227
210228 return createClineAPI ( outputChannel , sidebarProvider )
211229}
You can’t perform that action at this time.
0 commit comments