summaryrefslogtreecommitdiffstats
path: root/src/config/keymap/keymapping.rs
diff options
context:
space:
mode:
authorJeff Zhao <jeff.no.zhao@gmail.com>2021-05-13 11:52:45 -0400
committerJeff Zhao <jeff.no.zhao@gmail.com>2021-05-13 11:52:45 -0400
commitb60cd0e5ed3d6b40545062c98ff2e04678170b21 (patch)
tree96103e91ab0f6dc9c84e6893c16dd40535cb66f8 /src/config/keymap/keymapping.rs
parent176f0d51dadfa8e4c58a2971e12f139892421f47 (diff)
fix naming and add open_with id option
Diffstat (limited to 'src/config/keymap/keymapping.rs')
-rw-r--r--src/config/keymap/keymapping.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/keymap/keymapping.rs b/src/config/keymap/keymapping.rs
index 3b8313f..6ceb4a4 100644
--- a/src/config/keymap/keymapping.rs
+++ b/src/config/keymap/keymapping.rs
@@ -167,7 +167,7 @@ impl AppKeyMapping {
let keys = [Event::Key(Key::BackTab)];
insert_keycommand(&mut m, cmd, &keys)?;
- let cmd = KeyCommand::OpenFileWith;
+ let cmd = KeyCommand::OpenFileWith(None);
let keys = [Event::Key(Key::Char('r'))];
insert_keycommand(&mut m, cmd, &keys)?;