Add DSR cursor position sequence
This commit is contained in:
parent
eeae9b0cee
commit
2b1bc8087f
1 changed files with 7 additions and 0 deletions
7
st.c
7
st.c
|
@ -2067,6 +2067,13 @@ csihandle(void) {
|
||||||
case 'm': /* SGR -- Terminal attribute (color) */
|
case 'm': /* SGR -- Terminal attribute (color) */
|
||||||
tsetattr(csiescseq.arg, csiescseq.narg);
|
tsetattr(csiescseq.arg, csiescseq.narg);
|
||||||
break;
|
break;
|
||||||
|
case 'n': /* DSR – Device Status Report (cursor position) */
|
||||||
|
if (csiescseq.arg[0] == 6) {
|
||||||
|
char buf[40];
|
||||||
|
int len = snprintf(buf, sizeof(buf),"\033[%i;%iR", term.c.y+1, term.c.x+1);
|
||||||
|
ttywrite(buf, len);
|
||||||
|
break;
|
||||||
|
}
|
||||||
case 'r': /* DECSTBM -- Set Scrolling Region */
|
case 'r': /* DECSTBM -- Set Scrolling Region */
|
||||||
if(csiescseq.priv) {
|
if(csiescseq.priv) {
|
||||||
goto unknown;
|
goto unknown;
|
||||||
|
|
Loading…
Reference in a new issue