summaryrefslogtreecommitdiffstats
path: root/src/interactive/widgets
diff options
context:
space:
mode:
authorSathish <tsatiz@gmail.com>2019-06-07 15:28:16 +0530
committerSebastian Thiel <byronimo@gmail.com>2019-06-07 16:57:07 +0530
commiteae992fbf0b0f0adaf8feffcb0e4903deabc562e (patch)
tree368a501e870f1c0140f4fa59486266b72308c396 /src/interactive/widgets
parent3b717634364647139388dffd0d68ce6c9729eee9 (diff)
Fixed Up and Down key inputs and added Left and Right for Ascent and Descent navigation
Diffstat (limited to 'src/interactive/widgets')
-rw-r--r--src/interactive/widgets/help.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interactive/widgets/help.rs b/src/interactive/widgets/help.rs
index 652cf48..bfe5563 100644
--- a/src/interactive/widgets/help.rs
+++ b/src/interactive/widgets/help.rs
@@ -103,8 +103,8 @@ impl HelpPane {
{
hotkey("j/<down>", "move down an entry", None);
hotkey("k/<up>", "move up an entry", None);
- hotkey("o/<enter>", "descent into the selected directory", None);
- hotkey("u", "ascent one level into the parent directory", None);
+ hotkey("o/<enter>/<right>", "descent into the selected directory", None);
+ hotkey("u/<left>", "ascent one level into the parent directory", None);
hotkey("<backspace>", "^", None);
hotkey("Ctrl + d", "move down 10 entries at once", None);
hotkey("<Page Down>", "^", None);