Skip to content

Commit

Permalink
fix spacing on prompt for multi
Browse files Browse the repository at this point in the history
  • Loading branch information
miradnanali committed Dec 11, 2024
1 parent 50c8a7c commit f5fd125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aider/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def get_input(
if edit_format:
show += edit_format
if self.multiline_mode:
show += (" " if show.strip() else "") + "multi"
show += (" " if edit_format else "") + "multi"
show += "> "

inp = ""
Expand Down

0 comments on commit f5fd125

Please sign in to comment.