We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22246b9 commit 80f74f9Copy full SHA for 80f74f9
src/commands.ts
@@ -419,7 +419,6 @@ export class Commands {
419
// Launch and run command in terminal if command is provided
420
if (app.command) {
421
const terminal = vscode.window.createTerminal(app.status)
422
- terminal.show(true)
423
vscode.commands.executeCommand("workbench.action.toggleMaximizedPanel")
424
// If workspace_name is provided, run coder ssh before the command
425
if (app.workspace_name) {
@@ -437,6 +436,7 @@ export class Commands {
437
436
} else {
438
terminal.sendText("need workspace name")
439
}
+ terminal.show(false)
440
return
441
442
// Check if app has a URL to open
0 commit comments