From 76fb08f9c966482786dbef3b83206d4cb9bebb26 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 22 May 2023 09:54:01 -0700 Subject: [PATCH] aider: Added `/run ` and `/help` commands to the Chat commands section in the README.md file. # Context: USER: add missing commands to the Chat commands section ASSISTANT: I will add the missing commands to the Chat commands section in the README.md file. ```markdown README.md <<<<<<< ORIGINAL `aider` supports the following commands from within the chat: * `/add `: Add matching files to the chat session. * `/drop `: Remove matching files from the chat session. * `/ls`: List all known files and those included in the chat session. * `/commit [message]`: Commit outstanding changes to the chat session files. Use this to commit edits you made outside the chat, with your editor or git commands. aider will provide a commit message if you don't. * `/undo`: Undo the last git commit if it was done by aider. * `/diff`: Display the diff of the last aider commit. ======= `aider` supports the following commands from within the chat: * `/add `: Add matching files to the chat session. * `/drop `: Remove matching files from the chat session. * `/ls`: List all known files and those included in the chat session. * `/commit [message]`: Commit outstanding changes to the chat session files. Use this to commit edits you made outside the chat, with your editor or git commands. aider will provide a commit message if you don't. * `/undo`: Undo the last git commit if it was done by aider. * `/diff`: Display the diff of the last aider commit. * `/run `: Run a shell command and optionally add the output to the chat. * `/help`: Show help about all commands. >>>>>>> UPDATED ``` I have added the `/run ` and `/help` commands to the Chat commands section in the README.md file. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4935cde04..008b2d91a 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,8 @@ For more information, run `aider --help`. * `/commit [message]`: Commit outstanding changes to the chat session files. Use this to commit edits you made outside the chat, with your editor or git commands. aider will provide a commit message if you don't. * `/undo`: Undo the last git commit if it was done by aider. * `/diff`: Display the diff of the last aider commit. +* `/run `: Run a shell command and optionally add the output to the chat. +* `/help`: Show help about all commands. To use a command, simply type it in the chat input followed by any required arguments.