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 <file>`: Add files to the chat.
* `/drop <file>`: 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 <file>`: Add files to the chat.
* `/drop <file>`: 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.
This commit is contained in:
Paul Gauthier 2023-05-10 12:28:49 -07:00
parent c128141325
commit 605a5af522

View file

@ -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 <file>`: Add files to the chat.
* `/drop <file>`: 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