mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 09:44:59 +00:00
feat: Add announcements to /settings output
This commit is contained in:
parent
9789668ca4
commit
729cad640f
1 changed files with 3 additions and 1 deletions
|
@ -1203,7 +1203,9 @@ class Commands:
|
|||
def cmd_settings(self, args):
|
||||
"Print out the current settings"
|
||||
settings = format_settings(self.parser, self.args)
|
||||
self.io.tool_output(settings)
|
||||
announcements = "\n".join(self.coder.get_announcements())
|
||||
output = f"{settings}\n\nAnnouncements:\n{announcements}"
|
||||
self.io.tool_output(output)
|
||||
|
||||
def cmd_copy(self, args):
|
||||
"Copy the last assistant message to the clipboard"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue