1
0
mirror of https://github.com/bobwen-dev/hunter synced 2025-04-12 00:55:41 +02:00

fix keybind in procview

This commit is contained in:
rabite 2019-04-13 13:49:59 +02:00
parent 74a168401d
commit 89b94d0ad0

View File

@ -563,7 +563,7 @@ impl Widget for ProcView {
return Err(HError::PopupFinnished) }
Key::Char('d') => { self.remove_proc()? }
Key::Char('K') => { self.get_listview_mut().kill_proc()? }
Key::Up | Key::Char('p') => {
Key::Up | Key::Char('k') => {
self.get_listview_mut().move_up();
}
Key::Down | Key::Char('j') => {