summary |
log |
commit |
diff |
tree
raw |
patch |
inline | side by side (from parent 1:
5bb9012)
tmoveto resets CURSOR_WRAPNEXT.
Simple testcase:
for i in $(seq 1 200); do
printf '\t.';
usleep 100000;
printf '\t@';
usleep 100000;
done
In st executing this script causes @ and . to overwrite each other in
the last column.
for(--x; x > 0 && !term.tabs[x]; --x)
/* nothing */ ;
}
for(--x; x > 0 && !term.tabs[x]; --x)
/* nothing */ ;
}
+ term.c.x = LIMIT(x, 0, term.col-1);