aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2026-04-04 04:00:37 +0100
committerGitHub <noreply@github.com>2026-04-04 04:00:37 +0100
commitf68c3de3b7bd15a5f16ca09352277d297574787e (patch)
tree32cf481b6af1b1ff035a7b7fde89f93c2a8bab9d /docs
parentfeat: option to disable mouse support (#3372) (diff)
downloadatuin-f68c3de3b7bd15a5f16ca09352277d297574787e.zip
feat: add support for deleting all matching commands via keybindings (#3375)
Diffstat (limited to 'docs')
-rw-r--r--docs/docs/configuration/advanced-key-binding.md1
-rw-r--r--docs/docs/configuration/key-binding.md2
2 files changed, 3 insertions, 0 deletions
diff --git a/docs/docs/configuration/advanced-key-binding.md b/docs/docs/configuration/advanced-key-binding.md
index 7f73b5d6..21cf35c6 100644
--- a/docs/docs/configuration/advanced-key-binding.md
+++ b/docs/docs/configuration/advanced-key-binding.md
@@ -201,6 +201,7 @@ Note: `select-next` and `select-previous` respect the `invert` setting. When `in
| `return-query` | Close the TUI and return the current search query |
| `copy` | Copy the selected entry to the clipboard |
| `delete` | Delete the selected entry from history |
+| `delete-all` | Delete **all** history entries matching the selected command text |
| `exit` | Exit the TUI (behavior depends on the `exit_mode` setting) |
| `redraw` | Redraw the screen |
| `cycle-filter-mode` | Cycle through filter modes (global, host, session, directory) |
diff --git a/docs/docs/configuration/key-binding.md b/docs/docs/configuration/key-binding.md
index 942a2400..47f24cd4 100644
--- a/docs/docs/configuration/key-binding.md
+++ b/docs/docs/configuration/key-binding.md
@@ -227,6 +227,8 @@ $env.config = (
| page up | Scroll search results one page up |
| ↓ (with no entry selected) | Return original or return query depending on [settings](config.md#exit_mode) |
| ↓ | Select the next item on the list |
+| ctrl + a, d | Delete the selected history entry |
+| ctrl + a, D | Delete **all** history entries matching the selected command |
| ctrl + a, c | Switch to the context of the currently selected command / return to default |