Added /quit #451

This commit is contained in:
Paul Gauthier 2024-01-23 13:07:17 -08:00
parent c31f2313ba
commit 0c314144d2
2 changed files with 11 additions and 0 deletions

View file

@ -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.

View file

@ -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"