File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed
Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 581581 "command" : " atlascode.addRecommendedExtension" ,
582582 "title" : " Add as Recommended Extension" ,
583583 "category" : " Atlassian"
584+ },
585+ {
586+ "command" : " atlascode.rovodev.openHelp" ,
587+ "title" : " Documentation" ,
588+ "category" : " Atlassian"
584589 }
585590 ],
586591 "viewsContainers" : {
747752 "when" : " view == atlascode.views.rovoDev.webView" ,
748753 "group" : " rovoDevContextMenu2@1"
749754 },
755+ {
756+ "command" : " atlascode.rovodev.openHelp" ,
757+ "when" : " view == atlascode.views.rovoDev.webView && !atlascode:bbyEnvironmentActive" ,
758+ "group" : " rovoDevContextMenu2@2"
759+ },
750760 {
751761 "command" : " atlascode.rovodev.restartProcess" ,
752762 "when" : " view == atlascode.views.rovoDev.webView" ,
Original file line number Diff line number Diff line change @@ -396,6 +396,9 @@ export function registerRovoDevCommands(vscodeContext: ExtensionContext) {
396396 commands . registerCommand ( RovodevCommands . RovodevShareFeedback , ( ) =>
397397 Container . rovodevWebviewProvider . executeTriggerFeedback ( ) ,
398398 ) ,
399+ commands . registerCommand ( Commands . RovodevOpenHelp , ( ) => {
400+ env . openExternal ( Uri . parse ( 'https://support.atlassian.com/rovo/docs/work-with-rovo-dev-in-the-ide/' ) ) ;
401+ } ) ,
399402 commands . registerCommand ( RovodevCommands . RovodevLogout , ( ) => {
400403 Container . rovodevWebviewProvider . executeRovoDevLogout ( ) ;
401404 } ) ,
Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ export const enum Commands {
8888 DisableHelpExplorer = 'atlascode.disableHelpExplorer' ,
8989 CreateNewJql = 'atlascode.jira.createNewJql' ,
9090 ToDoIssue = 'atlascode.jira.todoIssue' ,
91+ RovodevOpenHelp = 'atlascode.rovodev.openHelp' ,
9192 InProgressIssue = 'atlascode.jira.inProgressIssue' ,
9293 DoneIssue = 'atlascode.jira.doneIssue' ,
9394 ShowOnboardingFlow = 'atlascode.showOnboardingFlow' ,
You can’t perform that action at this time.
0 commit comments