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.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/file_browser.rs b/src/file_browser.rs
index af700a8..c916789 100644
--- a/src/file_browser.rs
+++ b/src/file_browser.rs
@@ -1042,14 +1042,14 @@ impl Widget for FileBrowser {
Key::Char('/') => { self.turbo_cd()?; },
Key::Char('Q') => { self.quit_with_dir()?; },
Key::Right | Key::Char('l') => { self.enter_dir()?; },
- Key::Char('F') => { self.open_bg()?; },
+ Key::Char('L') => { self.open_bg()?; },
Key::Left | Key::Char('h') => { 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('L') => self.show_log()?,
+ Key::Char('g') => self.show_log()?,
Key::Char('z') => self.run_subshell()?,
Key::Char('c') => self.toggle_colums(),
_ => { self.main_widget_mut()?.on_key(key)?; },