mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 17:55:01 +00:00
remove ". " from multiline input
This commit is contained in:
parent
b806360a49
commit
56d6a47ad3
1 changed files with 2 additions and 2 deletions
|
@ -504,7 +504,7 @@ class InputOutput:
|
|||
"Handle Enter key press"
|
||||
if self.multiline_mode:
|
||||
# In multiline mode, Enter adds a newline
|
||||
event.current_buffer.insert_text("\n. ")
|
||||
event.current_buffer.insert_text("\n")
|
||||
else:
|
||||
# In normal mode, Enter submits
|
||||
event.current_buffer.validate_and_handle()
|
||||
|
@ -517,7 +517,7 @@ class InputOutput:
|
|||
event.current_buffer.validate_and_handle()
|
||||
else:
|
||||
# In normal mode, Alt+Enter adds a newline
|
||||
event.current_buffer.insert_text("\n. ")
|
||||
event.current_buffer.insert_text("\n")
|
||||
|
||||
while True:
|
||||
if multiline_input:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue