Introduction
Introduction Statistics Contact Development Disclaimer Help
tAdd DSR cursor position sequence - st - [fork] customized build of st, the sim…
git clone git://src.adamsgaard.dk/st
Log
Files
Refs
README
LICENSE
---
commit 2b1bc8087f232a7b0ba4c7233e76be7abae25a88
parent eeae9b0ceef9e2fec4cb4f1132748c302e5ac702
Author: Mihail Zenkov <[email protected]>
Date: Tue, 1 Oct 2013 20:01:15 +0200
Add DSR cursor position sequence
Diffstat:
M st.c | 7 +++++++
1 file changed, 7 insertions(+), 0 deletions(-)
---
diff --git a/st.c b/st.c
t@@ -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", ter…
+ ttywrite(buf, len);
+ break;
+ }
case 'r': /* DECSTBM -- Set Scrolling Region */
if(csiescseq.priv) {
goto unknown;
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.