Skip to content

Commit

Permalink
Close terminals on reload of window, they don't work across reloads r…
Browse files Browse the repository at this point in the history
…ight now
  • Loading branch information
DavyLandman committed Oct 27, 2023
1 parent e1439bb commit e7dd26c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rascal-vscode-extension/src/RascalExtension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ export class RascalExtension implements vscode.Disposable {
iconPath: this.icon,
shellPath: await getJavaExecutable(),
shellArgs: this.buildShellArgs(compilationPath, serverConfig, ...extraArgs),
name: `Rascal Terminal (${projectRoot?.name || "no project"})`,
isTransient: false, // right now we don't support transient terminals yet
name: `Rascal Terminal (${projectRoot?.name ?? "no project"})`,
});

terminal.show(false);
Expand Down

0 comments on commit e7dd26c

Please sign in to comment.