add altscreen escseq alias & caps to terminfo entry. (thx Bert Münnich)

This commit is contained in:
Aurélien Aptel
2011-06-08 20:22:38 +02:00
parent 9b404c0dfb
commit 189a81caa1
2 changed files with 6 additions and 2 deletions

6
st.c
View File

@ -1141,12 +1141,13 @@ csihandle(void) {
term.mode &= ~MODE_MOUSEMOTION;
break;
case 1049: /* = 1047 and 1048 */
case 47:
case 1047:
if(IS_SET(MODE_ALTSCREEN)) {
tclearregion(0, 0, term.col-1, term.row-1);
tswapscreen();
}
if(escseq.arg[0] == 1047)
if(escseq.arg[0] != 1049)
break;
case 1048:
tcursor(CURSOR_LOAD);
@ -1213,12 +1214,13 @@ csihandle(void) {
term.mode |= MODE_MOUSEMOTION;
break;
case 1049: /* = 1047 and 1048 */
case 47:
case 1047:
if(IS_SET(MODE_ALTSCREEN))
tclearregion(0, 0, term.col-1, term.row-1);
else
tswapscreen();
if(escseq.arg[0] == 1047)
if(escseq.arg[0] != 1049)
break;
case 1048:
tcursor(CURSOR_SAVE);