diff --git a/aider/io.py b/aider/io.py index 2d5b6ef36..07f6b3f38 100644 --- a/aider/io.py +++ b/aider/io.py @@ -353,9 +353,12 @@ class InputOutput: hist = "\n" + content.strip() + "\n\n" self.append_chat_history(hist) - def confirm_ask(self, question, default="y"): + def confirm_ask(self, question, default="y", subject=None): self.num_user_asks += 1 + if subject: + self.tool_output(subject, bold=True) + if self.yes is True: res = "y" elif self.yes is False: