mirror of https://github.com/xzeldon/htop.git
vi keys: translate ALT-h/j/k/l to arrow keys
This commit is contained in:
parent
466d4da0c6
commit
99b947058f
|
@ -244,6 +244,29 @@ void ScreenManager_run(ScreenManager* this, Panel** lastFocus, int* lastKey) {
|
||||||
redraw = false;
|
redraw = false;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
else if (ch == 27) {
|
||||||
|
int ch2 = getch();
|
||||||
|
if (ch2 != ERR) {
|
||||||
|
switch(ch2)
|
||||||
|
{
|
||||||
|
case 'h':
|
||||||
|
ch = KEY_LEFT;
|
||||||
|
break;
|
||||||
|
case 'j':
|
||||||
|
ch = KEY_DOWN;
|
||||||
|
break;
|
||||||
|
case 'k':
|
||||||
|
ch = KEY_UP;
|
||||||
|
break;
|
||||||
|
case 'l':
|
||||||
|
ch = KEY_RIGHT;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
ungetch(ch2);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
redraw = true;
|
redraw = true;
|
||||||
if (Panel_eventHandlerFn(panelFocus)) {
|
if (Panel_eventHandlerFn(panelFocus)) {
|
||||||
result = Panel_eventHandler(panelFocus, ch);
|
result = Panel_eventHandler(panelFocus, ch);
|
||||||
|
|
Loading…
Reference in New Issue