aider is AI pair programming in your terminal https://aider.chat/
Find a file
Paul Gauthier 6e9e384e5c Add FileHistory to prompt function calls in get_input method.
# 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.
2023-05-09 09:37:28 -07:00
.flake8 debug 2023-05-08 22:55:55 -07:00
.pre-commit-config.yaml added flake8 2023-05-07 22:13:57 -07:00
coder.py Add FileHistory to prompt function calls in get_input method. 2023-05-09 09:37:28 -07:00
dump.py init 2023-04-19 09:03:23 -07:00
main.py WIP: Refactor CLI help messages to use $ prefix for environment variables. 2023-05-09 00:38:10 -07:00
prompts.py prompts 2023-05-09 00:38:55 -07:00
test_utils.py Add tests for strip_quoted_wrapping function in test_utils.py. 2023-05-09 08:44:35 -07:00
utils.py added docstring to strip_quoted_wrapping 2023-05-09 07:42:05 -07:00