scrollback: clear history on reset ref. #102
This commit is contained in:
parent
41e6f9dce6
commit
c1ef3ce0d8
7
st.c
7
st.c
|
@ -3077,6 +3077,13 @@ eschandle(uchar ascii)
|
||||||
#endif // CSI_22_23_PATCH
|
#endif // CSI_22_23_PATCH
|
||||||
resettitle();
|
resettitle();
|
||||||
xloadcols();
|
xloadcols();
|
||||||
|
#if SCROLLBACK_PATCH
|
||||||
|
if (!IS_SET(MODE_ALTSCREEN)) {
|
||||||
|
term.scr = 0;
|
||||||
|
term.histi = 0;
|
||||||
|
term.histn = 0;
|
||||||
|
}
|
||||||
|
#endif // SCROLLBACK_PATCH
|
||||||
break;
|
break;
|
||||||
case '=': /* DECPAM -- Application keypad */
|
case '=': /* DECPAM -- Application keypad */
|
||||||
xsetmode(1, MODE_APPKEYPAD);
|
xsetmode(1, MODE_APPKEYPAD);
|
||||||
|
|
Loading…
Reference in New Issue