mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
docs: Add documentation for new multiline tag input method
This commit is contained in:
parent
10192296fe
commit
8b69b9c6a4
1 changed files with 9 additions and 0 deletions
|
@ -1,5 +1,14 @@
|
||||||
You can send long, multi-line messages in the chat in a few ways:
|
You can send long, multi-line messages in the chat in a few ways:
|
||||||
- Paste a multi-line message directly into the chat.
|
- Paste a multi-line message directly into the chat.
|
||||||
- Enter `{` alone on the first line to start a multiline message and `}` alone on the last line to end it.
|
- Enter `{` alone on the first line to start a multiline message and `}` alone on the last line to end it.
|
||||||
|
- Enter `{tag` (where "tag" is any sequence of letters/numbers) and end with `tag}`. This is useful when you need to include closing braces `}` in your message.
|
||||||
- Use Meta-ENTER to start a new line without sending the message (Esc+ENTER in some environments).
|
- Use Meta-ENTER to start a new line without sending the message (Esc+ENTER in some environments).
|
||||||
- Use `/paste` to paste text from the clipboard into the chat.
|
- Use `/paste` to paste text from the clipboard into the chat.
|
||||||
|
|
||||||
|
Example with a tag:
|
||||||
|
```
|
||||||
|
{python
|
||||||
|
def hello():
|
||||||
|
print("Hello}") # Note: contains a brace
|
||||||
|
python}
|
||||||
|
```
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue