suckless/st

\v and \f are have the same behaviour of \n. (722688d989bae9ce5e71507be5656c9b78ae7834)
Repositories | README | LICENSE

commit 722688d989bae9ce5e71507be5656c9b78ae7834
parent 6f87a39444166674daa94860d365e72343e0b882
Author: AurĂ©lien Aptel <[email protected]>
Date:   Sat, 16 Oct 2010 20:54:19 +0200

\v and \f are have the same behaviour of \n.

Diffstat:
Mst.c2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/st.c b/st.c @@ -1168,6 +1168,8 @@ tputc(char c) { case '\r': tmoveto(0, term.c.y); break; + case '\f': + case '\v': case '\n': /* go to first col if the mode is set */ tnewline(IS_SET(MODE_CRLF));