summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrabite <rabite@posteo.de>2019-04-13 19:09:08 +0200
committerrabite <rabite@posteo.de>2019-04-13 19:09:08 +0200
commitd41ee4aedb8265313d443d60e1f5b6b332cf28f7 (patch)
tree039094652786234fd7cc3949b9098f67f9278724
parent9894d0ffab557c38c22311c6082f62a099b2d2fd (diff)
remap open_bg / log
-rw-r--r--README.md4
-rw-r--r--src/file_browser.rs4
2 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 361356a..54b4712 100644
--- a/README.md
+++ b/README.md
@@ -123,12 +123,12 @@ By default hunter uses vi-style keybindings. If you use a QWERTY-like keyboard l
| d | toggle dirs first |
| / | turbo cd |
| Q | quit with dir/selections |
-| F | run in background |
+| L | run in background |
| ~ | goto prev cwd |
| ` | goto bookmark |
| m | add bookmark |
| w | show processes |
-| L holy(l) | show log |
+| g holy(l) | show log |
| z | open subshell in cwd |
| c | toggle columns |
| F(n) | switch to tab |
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)?; },