From e591acb7579a11e92bfacc41098aad3a5527908c Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 9 Aug 2024 17:35:58 -0400 Subject: [PATCH] fix: Set paginate to True by default in cmd_diff method --- aider/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 38f0c0599..f9d613178 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -470,7 +470,7 @@ class Commands: if self.coder.main_model.send_undo_reply: return prompts.undo_command_reply - def cmd_diff(self, args="", paginate=False): + def cmd_diff(self, args="", paginate=True): "Display the diff of the last aider commit" if not self.coder.repo: self.io.tool_error("No git repository found.")