all repos — st @ c5c2365ab7c7ac2671b6e7d31cc9b0d41636393c

st (suckless terminal) config

People, learn to keep to styles. Thanks.
Christoph Lohmann 20h@r-36.net
commit

c5c2365ab7c7ac2671b6e7d31cc9b0d41636393c

parent

62ab938965f2673e029ae2e2a4244788e673bd70

1 files changed, 5 insertions(+), 2 deletions(-)

jump to
M st.cst.c

@@ -1920,6 +1920,9 @@ }

void csihandle(void) { + char buf[40]; + int len; + switch(csiescseq.mode) { default: unknown:

@@ -2070,8 +2073,8 @@ 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); + len = snprintf(buf, sizeof(buf),"\033[%i;%iR", + term.c.y+1, term.c.x+1); ttywrite(buf, len); break; }