mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-14 13:04:35 +03:00
Horizontally scroll in larger increments when on the
Linux console because of slow update of unaccelerated fb
This commit is contained in:
6
CRT.c
6
CRT.c
@ -106,6 +106,8 @@ int CRT_colorScheme = 0;
|
||||
|
||||
int CRT_colors[LAST_COLORELEMENT] = { 0 };
|
||||
|
||||
char* CRT_termType;
|
||||
|
||||
// TODO: pass an instance of Settings instead.
|
||||
|
||||
void CRT_init(int delay, int colorScheme) {
|
||||
@ -124,8 +126,8 @@ void CRT_init(int delay, int colorScheme) {
|
||||
} else {
|
||||
CRT_hasColors = false;
|
||||
}
|
||||
char* termType = getenv("TERM");
|
||||
if (String_eq(termType, "xterm") || String_eq(termType, "xterm-color") || String_eq(termType, "vt220")) {
|
||||
CRT_termType = getenv("TERM");
|
||||
if (String_eq(CRT_termType, "xterm") || String_eq(CRT_termType, "xterm-color") || String_eq(CRT_termType, "vt220")) {
|
||||
define_key("\033[H", KEY_HOME);
|
||||
define_key("\033[F", KEY_END);
|
||||
define_key("\033OP", KEY_F(1));
|
||||
|
Reference in New Issue
Block a user