diff --git a/HISTORY.md b/HISTORY.md index 9b267cf38..f4bab1e72 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -5,6 +5,7 @@ - Add read-only files to the chat context with `/read` and `--read`, including from outside the git repo. - New `/clipboard` command to paste images or text from the clipboard, replaces `/add-clipboard-image`. +- Output from /web and /diff is now paginated. - Messages can now contain `/xxx` commands when [scripting aider](https://aider.chat/docs/scripting.html). - Aider in docker image now provides the correct command to update to latest version. - Improved retries on API errors (was easy to test during Sonnet outage). diff --git a/aider/website/HISTORY.md b/aider/website/HISTORY.md index 05aaeab67..62e06106e 100644 --- a/aider/website/HISTORY.md +++ b/aider/website/HISTORY.md @@ -18,9 +18,11 @@ cog.out(text) ### main branch +- Add read-only files to the chat context with `/read` and `--read`, including from outside the git repo. - New `/clipboard` command to paste images or text from the clipboard, replaces `/add-clipboard-image`. -- Can now send `/commands` when [scripting aider](https://aider.chat/docs/scripting.html). -- Aider in docker image now provides correct command to update to latest version. +- Output from /web and /diff is now paginated. +- Messages can now contain `/xxx` commands when [scripting aider](https://aider.chat/docs/scripting.html). +- Aider in docker image now provides the correct command to update to latest version. - Improved retries on API errors (was easy to test during Sonnet outage). - Performance improvements for repo map calculation. - `/tokens` now shows the active model. diff --git a/aider/website/docs/usage/commands.md b/aider/website/docs/usage/commands.md index d17274800..f8f6bfd7a 100644 --- a/aider/website/docs/usage/commands.md +++ b/aider/website/docs/usage/commands.md @@ -31,13 +31,13 @@ cog.out(get_help_md()) | **/model** | Switch to a new LLM | | **/models** | Search the list of available models | | **/quit** | Exit the application | -| **/read** | Load a file from anywhere and add it to abs_read_only_fnames | +| **/read** | Add a file to the chat that is for reference, not to be edited | | **/run** | Run a shell command and optionally add the output to the chat (alias: !) | | **/test** | Run a shell command and add the output to the chat on non-zero exit code | | **/tokens** | Report on the number of tokens used by the current chat context | | **/undo** | Undo the last git commit if it was done by aider | | **/voice** | Record and transcribe voice input | -| **/web** | Use headless selenium to scrape a webpage and add the content to the chat | +| **/web** | Scrape a webpage, convert to markdown and add to the chat |