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.rs9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/file_browser.rs b/src/file_browser.rs
index b0fe845..cf3dbcc 100644
--- a/src/file_browser.rs
+++ b/src/file_browser.rs
@@ -1033,15 +1033,14 @@ impl Widget for FileBrowser {
match key {
Key::Char('/') => { self.turbo_cd()?; },
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(),
_ => { self.main_widget_mut()?.on_key(key)?; },