top: treat all of those vertical scroll keys uniformly
When not displaying all tasks (the 'i' toggle is off), the concept of vertical scrolling has no real meaning. However, only 2 keys (up/down) impacting that vertical position were currently being disabled with this mode. This patch will extend such treatment to the following additional vertical impact keys: pgup,pgdn,home & end. Signed-off-by: Jim Warner <james.warner@comcast.net>
This commit is contained in:
parent
9dd7a97c4a
commit
9ea85bc653
14
top/top.c
14
top/top.c
@ -5215,27 +5215,32 @@ static void keys_window (int ch) {
|
||||
break;
|
||||
#endif // USE_X_COLHDR ------------------------------------
|
||||
case kbd_PGUP:
|
||||
if (VIZCHKw(w)) if (0 < w->begtask) {
|
||||
if (VIZCHKw(w)) {
|
||||
if (CHKw(w, Show_IDLEPS) && 0 < w->begtask) {
|
||||
w->begtask -= (w->winlines - 1);
|
||||
if (0 > w->begtask) w->begtask = 0;
|
||||
}
|
||||
}
|
||||
break;
|
||||
case kbd_PGDN:
|
||||
if (VIZCHKw(w)) if (w->begtask < Frame_maxtask - 1) {
|
||||
if (VIZCHKw(w)) {
|
||||
if (CHKw(w, Show_IDLEPS) && w->begtask < Frame_maxtask - 1) {
|
||||
w->begtask += (w->winlines - 1);
|
||||
if (w->begtask > Frame_maxtask - 1) w->begtask = Frame_maxtask - 1;
|
||||
if (0 > w->begtask) w->begtask = 0;
|
||||
}
|
||||
}
|
||||
break;
|
||||
case kbd_HOME:
|
||||
#ifndef SCROLLVAR_NO
|
||||
if (VIZCHKw(w)) w->begtask = w->begpflg = w->varcolbeg = 0;
|
||||
if (VIZCHKw(w)) if (CHKw(w, Show_IDLEPS)) w->begtask = w->begpflg = w->varcolbeg = 0;
|
||||
#else
|
||||
if (VIZCHKw(w)) w->begtask = w->begpflg = 0;
|
||||
if (VIZCHKw(w)) if (CHKw(w, Show_IDLEPS)) w->begtask = w->begpflg = 0;
|
||||
#endif
|
||||
break;
|
||||
case kbd_END:
|
||||
if (VIZCHKw(w)) {
|
||||
if (CHKw(w, Show_IDLEPS)) {
|
||||
w->begtask = (Frame_maxtask - w->winlines) + 1;
|
||||
if (0 > w->begtask) w->begtask = 0;
|
||||
w->begpflg = w->endpflg;
|
||||
@ -5243,6 +5248,7 @@ static void keys_window (int ch) {
|
||||
w->varcolbeg = 0;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
break;
|
||||
default: // keep gcc happy
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user