X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=st.c;h=147a6fa5dcb76482f05f900d022da98bb8f69608;hb=722688d989bae9ce5e71507be5656c9b78ae7834;hp=16462c7c97e415ca8ae7d57ab2e69d434049f61e;hpb=6f87a39444166674daa94860d365e72343e0b882;p=st.git diff --git a/st.c b/st.c index 16462c7..147a6fa 100644 --- 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));