mirror of
git://git.suckless.org/st
synced 2025-05-14 14:05:49 +01:00
fix \b and clean \t.
This commit is contained in:
parent
d1084bfdab
commit
c81ea29001
5
st.c
5
st.c
@ -443,11 +443,6 @@ tmovecursor(int dir) {
|
||||
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++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user