mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 01:35:00 +00:00
aider is AI pair programming in your terminal
https://aider.chat/
![]() # Context: USER: your change to the get_input method didn't work because you formatted it wrong. try again. no ... ASSISTANT: I apologize for the confusion. Here's the updated change to the get_input method without using "...": ```python coder.py <<<<<<< ORIGINAL if multiline_input: line = prompt(". ", completer=completer_instance) else: line = prompt("> ", completer=completer_instance) ======= if multiline_input: line = prompt(". ", completer=completer_instance, history=FileHistory(self.history_file)) else: line = prompt("> ", completer=completer_instance, history=FileHistory(self.history_file)) >>>>>>> UPDATED ``` This change adds the FileHistory to the prompt function calls in the get_input method. |
||
---|---|---|
.flake8 | ||
.pre-commit-config.yaml | ||
coder.py | ||
dump.py | ||
main.py | ||
prompts.py | ||
test_utils.py | ||
utils.py |