aboutsummaryrefslogtreecommitdiffhomepage
path: root/st.c
diff options
context:
space:
mode:
authorGravatar Aurélien Aptel <aurelien.aptel@gmail.com>2010-10-16 20:54:19 +0200
committerGravatar Aurélien Aptel <aurelien.aptel@gmail.com>2010-10-16 20:54:19 +0200
commit722688d989bae9ce5e71507be5656c9b78ae7834 (patch)
tree4a6c7224c55476662c89d898f0a17650d6ad6e62 /st.c
parent6f87a39444166674daa94860d365e72343e0b882 (diff)
\v and \f are have the same behaviour of \n.
Diffstat (limited to 'st.c')
-rw-r--r--st.c2
1 files changed, 2 insertions, 0 deletions
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));