[hackers] [st] Add DSR cursor position sequence || Mihail Zenkov
commit 2b1bc8087f232a7b0ba4c7233e76be7abae25a88
Author: Mihail Zenkov <mihail.zenkov_AT_gmail.com>
Date: Tue Oct 1 20:01:15 2013 +0200
Add DSR cursor position sequence
diff --git a/st.c b/st.c
index c3a04c5..05e285c 100644
--- a/st.c
+++ b/st.c
_AT_@ -2067,6 +2067,13 @@ csihandle(void) {
case 'm': /* SGR -- Terminal attribute (color) */
tsetattr(csiescseq.arg, csiescseq.narg);
break;
+ case 'n': /* DSR – Device Status Report (cursor position) */
+ if (csiescseq.arg[0] == 6) {
+ char buf[40];
+ int len = snprintf(buf, sizeof(buf),"[%i;%iR", term.c.y+1, term.c.x+1);
+ ttywrite(buf, len);
+ break;
+ }
case 'r': /* DECSTBM -- Set Scrolling Region */
if(csiescseq.priv) {
goto unknown;
Received on Wed Oct 02 2013 - 20:48:41 CEST
This archive was generated by hypermail 2.3.0
: Wed Oct 02 2013 - 21:00:19 CEST