summaryrefslogtreecommitdiffstats
path: root/src/file_browser.rs
diff options
context:
space:
mode:
authorrabite <rabite@posteo.de>2019-03-21 21:40:10 +0100
committerrabite <rabite@posteo.de>2019-03-21 21:45:56 +0100
commit0cb4fa89b5de8ce6c0819a6f27e7e7a213091dc7 (patch)
tree185d88c73d34c4086a009ef186976ad4fa8dabb7 /src/file_browser.rs
parente4a2749ee0671c7d112b0ab6cabb8e61f8c0f9c0 (diff)
evil keybinds ;)
Diffstat (limited to 'src/file_browser.rs')
-rw-r--r--src/file_browser.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/file_browser.rs b/src/file_browser.rs
index 558e5a6..d083896 100644
--- a/src/file_browser.rs
+++ b/src/file_browser.rs
@@ -844,14 +844,14 @@ impl Widget for FileBrowser {
match key {
Key::Char('/') => { self.turbo_cd()?; },
Key::Char('Q') => { self.quit_with_dir()?; },
- Key::Right | Key::Char('f') => { self.enter_dir()?; },
+ Key::Right | Key::Char('l') => { self.enter_dir()?; },
Key::Char('F') => { self.open_bg()?; },
- Key::Left | Key::Char('b') => { self.go_back()?; },
+ 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.proc_view.lock()?.popup()?; },
- Key::Char('l') => self.log_view.lock()?.popup()?,
+ Key::Char('L') => self.log_view.lock()?.popup()?,
Key::Char('z') => self.run_subshell()?,
Key::Char('c') => self.toggle_colums(),
_ => { self.main_widget_mut()?.on_key(key)?; },