mirror of
https://github.com/alrayyes/st
synced 2023-11-14 15:56:30 +00:00
fix cursor handling when alt screen is disabled
I don't like this alt screen thing, but when allowaltscreen == 0, the cursor is still saved and restored after calling 'less' (or 'man'). This patch makes allowaltscreen == 0 usable.
This commit is contained in:
parent
ebb6e03201
commit
b8d6171cb0
3
st.c
3
st.c
@ -1855,7 +1855,10 @@ tsetmode(bool priv, bool set, int *args, int narg) {
|
|||||||
MODBIT(term.mode, set, MODE_8BIT);
|
MODBIT(term.mode, set, MODE_8BIT);
|
||||||
break;
|
break;
|
||||||
case 1049: /* swap screen & set/restore cursor as xterm */
|
case 1049: /* swap screen & set/restore cursor as xterm */
|
||||||
|
if (!allowaltscreen)
|
||||||
|
break;
|
||||||
tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
|
tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
|
||||||
|
/* FALLTHRU */
|
||||||
case 47: /* swap screen */
|
case 47: /* swap screen */
|
||||||
case 1047:
|
case 1047:
|
||||||
if (!allowaltscreen)
|
if (!allowaltscreen)
|
||||||
|
Loading…
Reference in New Issue
Block a user