summaryrefslogtreecommitdiffstats
path: root/src/file_browser.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/file_browser.rs')
-rw-r--r--src/file_browser.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/file_browser.rs b/src/file_browser.rs
index b77109b..8687f9b 100644
--- a/src/file_browser.rs
+++ b/src/file_browser.rs
@@ -1305,14 +1305,14 @@ impl Widget for FileBrowser {
Key::Char('~') => { self.go_home()?; },
Key::Char('q') => HError::quit()?,
Key::Char('Q') => { self.quit_with_dir()?; },
- Key::Right | Key::Char('l') => { self.enter_dir()?; },
- Key::Char('L') => { self.open_bg()?; },
- Key::Left | Key::Char('h') => { self.go_back()?; },
+ Key::Right | Key::Char('f') => { self.enter_dir()?; },
+ Key::Char('F') => { self.open_bg()?; },
+ Key::Left | Key::Char('b') => { self.go_back()?; },
Key::Char('-') => { self.goto_prev_cwd()?; },
Key::Char('`') => { self.goto_bookmark()?; },
Key::Char('m') => { self.add_bookmark()?; },
Key::Char('w') => { self.show_procview()?; },
- Key::Char('g') => self.show_log()?,
+ Key::Char('l') => self.show_log()?,
Key::Char('z') => self.run_subshell()?,
Key::Char('c') => self.toggle_colums(),
_ => {