Merge pull request #624 from mklein-de/xterm-256color

make special keys also work with TERM=xterm-256color
This commit is contained in:
Hisham Muhammad 2017-06-06 15:23:58 -03:00 committed by GitHub
commit e03e45d819
1 changed files with 1 additions and 1 deletions

2
CRT.c
View File

@ -575,7 +575,7 @@ void CRT_init(int delay, int colorScheme) {
CRT_scrollHAmount = 20;
else
CRT_scrollHAmount = 5;
if (String_eq(CRT_termType, "xterm") || String_eq(CRT_termType, "xterm-color") || String_eq(CRT_termType, "vt220")) {
if (String_startsWith(CRT_termType, "xterm") || String_eq(CRT_termType, "vt220")) {
define_key("\033[H", KEY_HOME);
define_key("\033[F", KEY_END);
define_key("\033[7~", KEY_HOME);