summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Thiel <sthiel@thoughtworks.com>2019-06-08 04:27:14 +0530
committerSebastian Thiel <sthiel@thoughtworks.com>2019-06-08 05:04:51 +0530
commitd42573e63a120c8c5a253b7be52f9c68fb72274b (patch)
tree64805b56a217daf649e9d7a024d333523c338b4c
parentc0aa567e81b54913df464c9b500fe7a20ada0ea5 (diff)
Pune/India: Make help window pretty again
-rw-r--r--src/interactive/widgets/help.rs12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/interactive/widgets/help.rs b/src/interactive/widgets/help.rs
index ef04c51..26d659b 100644
--- a/src/interactive/widgets/help.rs
+++ b/src/interactive/widgets/help.rs
@@ -103,11 +103,8 @@ impl HelpPane {
{
hotkey("j/<down>", "move down an entry", None);
hotkey("k/<up>", "move up an entry", None);
- hotkey(
- "o/<enter>/<right>",
- "descent into the selected directory",
- None,
- );
+ hotkey("o/<enter>", "descent into the selected directory", None);
+ hotkey("<right>", "^", None);
hotkey(
"u/<left>",
"ascent one level into the parent directory",
@@ -147,10 +144,11 @@ impl HelpPane {
}
title("Keys in the Mark pane");
{
+ hotkey("d/<space>", "remove the selected entry from the list", None);
hotkey(
- "Ctrl + Shift + r",
+ "Ctrl + R",
"Permanently delete all marked entries without prompt!",
- None,
+ Some("This operation cannot be undone!"),
);
spacer();
}