summaryrefslogtreecommitdiffstats
path: root/src/proclist.rs
diff options
context:
space:
mode:
authorrabite <rabite@posteo.de>2019-05-22 14:59:47 +0200
committerrabite <rabite@posteo.de>2019-07-01 17:30:08 +0200
commita06a6fae952afd663d9eed033ba15709284f4024 (patch)
treeffe1acef9edbfe0ac167091b830f8d67f2e70aa4 /src/proclist.rs
parent8b46676d9e8af0cac4752a93ac436b7c0fd3cb81 (diff)
created new holy branch based off master for sanityv1.3.0-holy
Diffstat (limited to 'src/proclist.rs')
-rw-r--r--src/proclist.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/proclist.rs b/src/proclist.rs
index a6da1d3..0aba5c8 100644
--- a/src/proclist.rs
+++ b/src/proclist.rs
@@ -662,16 +662,16 @@ impl Widget for ProcView {
self.get_core()?.clear().log();
return Err(HError::PopupFinnished) }
Key::Char('d') => { self.remove_proc()? }
- Key::Char('K') => { self.get_listview_mut().kill_proc()? }
- Key::Up | Key::Char('k') => {
+ Key::Char('k') => { self.get_listview_mut().kill_proc()? }
+ Key::Up | Key::Char('p') => {
self.get_listview_mut().move_up();
}
- Key::Down | Key::Char('j') => {
+ Key::Down | Key::Char('n') => {
self.get_listview_mut().move_down();
}
Key::Char('f') => { self.toggle_follow().log(); }
- Key::Ctrl('j') => { self.scroll_down().log(); },
- Key::Ctrl('k') => { self.scroll_up().log(); },
+ Key::Ctrl('n') => { self.scroll_down().log(); },
+ Key::Ctrl('p') => { self.scroll_up().log(); },
Key::Ctrl('v') => { self.page_down().log(); },
Key::Alt('v') => { self.page_up().log(); },
Key::Char('>') => { self.scroll_bottom().log(); },