aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMihail Zenkov2013-10-01 20:01:15 +0200
committerRoberto E. Vargas Caballero2013-10-02 20:45:19 +0200
commit7d8db543c9349ae85e33f4f8b8f416d6acfaab73 (patch)
tree22d5c359e73371ade7abd2e5ba4a8b554f7d1952
parenta20f80f2e30865f725fe0b24889bcdc3266ccf16 (diff)
downloadaur-7d8db543c9349ae85e33f4f8b8f416d6acfaab73.tar.gz
Add DSR cursor position sequence
-rw-r--r--st.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/st.c b/st.c
index c3a04c5b0335..05e285c9d679 100644
--- a/st.c
+++ b/st.c
@@ -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),"\033[%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;