From 9a727206f1c94f7580e79a5355adc4b932ae6345 Mon Sep 17 00:00:00 2001 From: Jonas Maier <> Date: Fri, 22 May 2026 16:51:05 +0200 Subject: if-statement parsing might now allow for completion within if-statements --- src/run/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/run') diff --git a/src/run/mod.rs b/src/run/mod.rs index 52d3925..f34b678 100644 --- a/src/run/mod.rs +++ b/src/run/mod.rs @@ -451,7 +451,7 @@ impl Executor { stdin: InputReader, stdout: OutputWriter, ) -> SpawnedCmd { - self.execute_block(parse::Block { commands: s.stmts }, stdin, stdout) + self.execute_block(parse::Block { commands: s.stmts, finished_parsing: true }, stdin, stdout) } } -- cgit v1.2.3