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 398fdf8 commit 5ad5167Copy full SHA for 5ad5167
src/manimShell.ts
@@ -810,6 +810,8 @@ export class ManimShell {
810
async (event: vscode.TerminalShellExecutionEndEvent) => {
811
if (this.shellWeTryToSpawnIn === event.terminal) {
812
Logger.debug("❌ Tried to spawn a new Manim session, but it failed");
813
+ if (event.execution.commandLine.value.split(" ")[0] !== "manimgl")
814
+ return;
815
this.eventEmitter.emit(ManimShellEvent.MANIM_NOT_STARTED);
816
this.resetActiveShell();
817
Window.showErrorMessage(
0 commit comments