From 605a5af522b3380b4f93c7386fbf0b456f8330b1 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 10 May 2023 12:28:49 -0700 Subject: [PATCH] aider: Added `/help` command to the list of available commands in README.md. # Context: USER: add /help too ASSISTANT: To add the `/help` command to the list of commands in the `README.md` file, you can insert the following content: ```python README.md <<<<<<< ORIGINAL Aider supports the following commands: * `/add `: Add files to the chat. * `/drop `: Remove files from the chat. * `/ls`: List files and show their chat status. ======= Aider supports the following commands: * `/help`: Show help about all commands. * `/add `: Add files to the chat. * `/drop `: Remove files from the chat. * `/ls`: List files and show their chat status. >>>>>>> UPDATED ``` This will add the `/help` command to the list of available commands in the README.md file. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8de5a9453..c95e58463 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,10 @@ Each change is automatically committed to git with a sensible commit message. Aider supports the following commands: +* `/help`: Show help about all commands. * `/add `: Add files to the chat. * `/drop `: Remove files from the chat. * `/ls`: List files and show their chat status. - To use a command, simply type it in the chat input followed by any required arguments. ## Installation