mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 14:55:00 +00:00
Added /quit #451
This commit is contained in:
parent
c31f2313ba
commit
0c314144d2
2 changed files with 11 additions and 0 deletions
|
@ -1,7 +1,14 @@
|
|||
# Release history
|
||||
|
||||
### main
|
||||
|
||||
- Improved streaming of markdown to the terminal.
|
||||
- Added `/quit` as alias for `/exit`.
|
||||
- Added `--skip-check-update` to skip checking for the update on launch.
|
||||
|
||||
### v0.22.0
|
||||
|
||||
- New `/test` command that runs a command and adds the output to the chat on non-zero exit status.
|
||||
- Improvements for unified diff editing format.
|
||||
- Added ! as an alias for /run.
|
||||
- Autocomplete for /add and /drop now properly quotes filenames with spaces.
|
||||
|
|
|
@ -468,6 +468,10 @@ class Commands:
|
|||
"Exit the application"
|
||||
sys.exit()
|
||||
|
||||
def cmd_quit(self, args):
|
||||
"Exit the application"
|
||||
sys.exit()
|
||||
|
||||
def cmd_ls(self, args):
|
||||
"List all known files and indicate which are included in the chat session"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue