From 873a3886931514e3abac5a8e68a93294243d2164 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 6 Feb 2024 16:14:27 -0800 Subject: [PATCH] Fixed the ! shortcut for /run --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index e2803b84e..2b2dcf6af 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -65,7 +65,7 @@ class Commands: def run(self, inp): if inp.startswith("!"): - self.do_run("run", inp[1:]) + return self.do_run("run", inp[1:]) return res = self.matching_commands(inp)