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