aider: Added a "Commands" section to the README.md file, documenting the available commands.

# Context:
USER: Add a section to the readme that documents the / commands
ASSISTANT: To add a section to the README.md file that documents the available commands, you can insert the following content:

```python
README.md
<<<<<<< ORIGINAL
* Live, colorized, human friendly output.
* Readline style chat input history, with autocompletion of tokens found in the source files being discussed (via `prompt_toolkit`)
=======
* Live, colorized, human friendly output.
* Readline style chat input history, with autocompletion of tokens found in the source files being discussed (via `prompt_toolkit`)

## Commands

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.

To use a command, simply type it in the chat input followed by any required arguments.
>>>>>>> UPDATED
```

This will add a new section called "Commands" to the README.md file, explaining the available commands and their usage.
This commit is contained in:
Paul Gauthier 2023-05-10 12:28:04 -07:00
parent e33fa4480a
commit c128141325

View file

@ -21,6 +21,15 @@ Each change is automatically committed to git with a sensible commit message.
* Live, colorized, human friendly output.
* Readline style chat input history, with autocompletion of tokens found in the source files being discussed (via `prompt_toolkit`)
## Commands
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.
To use a command, simply type it in the chat input followed by any required arguments.
## Installation
1. Install the package: `pip install git+https://github.com/paul-gauthier/aider.git`