File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -263,19 +263,17 @@ async function serverManager(): Promise<void> {
263
263
}
264
264
return vscode . window
265
265
. showInformationMessage (
266
- "The InterSystems® Server Manager extension is recommended to help you define connections."
266
+ "The InterSystems® Server Manager extension is recommended to help you define connections." ,
267
267
"Install" ,
268
268
"Skip" ,
269
269
"Ignore"
270
270
)
271
271
. then ( async ( action ) => {
272
272
switch ( action ) {
273
273
case "Install" :
274
- await vscode . commands . executeCommand ( "workbench.extensions.installExtension" , extId ) ;
275
- // eslint-disable-next-line no-fallthrough
276
- case "View" :
277
274
await vscode . commands . executeCommand ( "workbench.extensions.search" , `@tag:"intersystems"` ) ;
278
275
await vscode . commands . executeCommand ( "extension.open" , extId ) ;
276
+ await vscode . commands . executeCommand ( "workbench.extensions.installExtension" , extId ) ;
279
277
break ;
280
278
case "Ignore" :
281
279
config ( ) . update ( "ignoreInstallServerManager" , true , vscode . ConfigurationTarget . Global ) ;
You can’t perform that action at this time.
0 commit comments