fix: Set paginate to True by default in cmd_diff method

This commit is contained in:
Paul Gauthier 2024-08-09 17:35:58 -04:00 committed by Paul Gauthier (aider)
parent c1ef85640f
commit e591acb757

View file

@ -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.")