all repos — st @ 5c93f399c564f3475ffa4d3b3314a06db533e410

st (suckless terminal) config

clean \t.
Aurélien Aptel aurelien.aptel@gmail.com
commit

5c93f399c564f3475ffa4d3b3314a06db533e410

parent

44226483fb0a3d6270970399d8a91abb2d16146b

1 files changed, 1 insertions(+), 6 deletions(-)

jump to
M st.cst.c

@@ -861,12 +861,7 @@

void tputtab(void) { int space = TAB - term.c.x % TAB; - - if(term.c.x + space >= term.col) - space--; - - for(; space > 0; space--) - tmovecursor(CURSOR_RIGHT); + tmoveto(term.c.x + space, term.c.y); } void