all repos — st @ b09401b96b640a796d11774664c49031cee3245a

st (suckless terminal) config

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

b09401b96b640a796d11774664c49031cee3245a

parent

a7922bd1d94ace6d14e40a27820e217cd6c4e632

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

jump to
M st.cst.c

@@ -443,11 +443,6 @@ yf++;

break; case CURSOR_LEFT: xf--; - if(term.mode & MODE_WRAP && xf < 0) { - xf = term.col-1, yf--; - if(yf < term.top) - yf = term.top, xf = 0; - } break; case CURSOR_RIGHT: xf++;