summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/interactive/widgets/entries.rs2
-rw-r--r--src/interactive/widgets/mark.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/interactive/widgets/entries.rs b/src/interactive/widgets/entries.rs
index 5552d08..3f39a73 100644
--- a/src/interactive/widgets/entries.rs
+++ b/src/interactive/widgets/entries.rs
@@ -182,7 +182,7 @@ impl Entries {
);
}
let bound = line_bound(bound, bound.height.saturating_sub(1) as usize);
- let help_text = " mark-move = d | mark-toggle = space ";
+ let help_text = " mark-move = d | mark-toggle = space | toggle-all = a";
let help_text_block_width = block_width(help_text);
if help_text_block_width <= bound.width {
draw_text_nowrap_fn(
diff --git a/src/interactive/widgets/mark.rs b/src/interactive/widgets/mark.rs
index 19f2173..291c149 100644
--- a/src/interactive/widgets/mark.rs
+++ b/src/interactive/widgets/mark.rs
@@ -412,7 +412,7 @@ impl MarkPane {
);
}
let bound = line_bound(bound, bound.height.saturating_sub(1) as usize);
- let help_text = " mark-toggle = space|d";
+ let help_text = " mark-toggle = space,d | remove-all = a";
let help_text_block_width = block_width(help_text);
if help_text_block_width <= bound.width {
draw_text_nowrap_fn(