File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ export class ObjectScriptCodeLensProvider implements vscode.CodeLensProvider {
68
68
cmd = {
69
69
title : "Open Graphical Editor" ,
70
70
command : "vscode-objectscript.openPathInBrowser" ,
71
+ tooltip : "Open graphical editor in an external browser" ,
71
72
arguments : [
72
73
`/csp/${ api . config . ns . toLowerCase ( ) } /EnsPortal.${
73
74
xdataName == "BPL" ? `BPLEditor.zen?BP=${ className } .BPL` : `DTLEditor.zen?DT=${ className } .DTL`
@@ -77,13 +78,15 @@ export class ObjectScriptCodeLensProvider implements vscode.CodeLensProvider {
77
78
} ;
78
79
} else if ( xdataName == "RuleDefinition" && superclasses . includes ( "Ens.Rule.Definition" ) ) {
79
80
cmd = {
80
- title : "Re-Open in Graphical Editor" ,
81
+ title : "Reopen in Graphical Editor" ,
81
82
command : "workbench.action.toggleEditorType" ,
83
+ tooltip : "Replace text editor with graphical editor" ,
82
84
} ;
83
85
} else if ( xdataName == "KPI" && superclasses . includes ( "%DeepSee.KPI" ) ) {
84
86
cmd = {
85
87
title : "Test KPI" ,
86
88
command : "vscode-objectscript.openPathInBrowser" ,
89
+ tooltip : "Open testing page in an external browser" ,
87
90
arguments : [ `/csp/${ api . config . ns . toLowerCase ( ) } /${ className } .cls` , document . uri ] ,
88
91
} ;
89
92
}
You can’t perform that action at this time.
0 commit comments