diff --git a/src/config.rs b/src/config.rs index fbf12b6..9bc0511 100644 --- a/src/config.rs +++ b/src/config.rs @@ -82,6 +82,7 @@ pub struct KeyConfig { pub move_down: Key, pub copy: Key, pub enter: Key, + pub run: Key, pub exit: Key, pub quit: Key, pub exit_popup: Key, @@ -120,6 +121,7 @@ impl Default for KeyConfig { move_down: Key::Down, copy: Key::Char('y'), enter: Key::Enter, + run: Key::Ctrl('r'), exit: Key::Ctrl('c'), quit: Key::Char('q'), exit_popup: Key::Esc,