aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c4
-rw-r--r--st.info2
2 files changed, 6 insertions, 0 deletions
diff --git a/st.c b/st.c
index b8b2bbf..7b7bd55 100644
--- a/st.c
+++ b/st.c
@@ -2100,6 +2100,10 @@ tputc(char *c, int len) {
2100 sel.bx = -1; 2100 sel.bx = -1;
2101 if(IS_SET(MODE_WRAP) && term.c.state & CURSOR_WRAPNEXT) 2101 if(IS_SET(MODE_WRAP) && term.c.state & CURSOR_WRAPNEXT)
2102 tnewline(1); /* always go to first col */ 2102 tnewline(1); /* always go to first col */
2103 if(IS_SET(MODE_INSERT) && term.c.x+1 < term.col)
2104 memmove(&term.line[term.c.y][term.c.x+1],
2105 &term.line[term.c.y][term.c.x],
2106 (term.col - term.c.x - 1) * sizeof(Glyph));
2103 tsetchar(c, &term.c.attr, term.c.x, term.c.y); 2107 tsetchar(c, &term.c.attr, term.c.x, term.c.y);
2104 if(term.c.x+1 < term.col) 2108 if(term.c.x+1 < term.col)
2105 tmoveto(term.c.x+1, term.c.y); 2109 tmoveto(term.c.x+1, term.c.y);
diff --git a/st.info b/st.info
index 4a05160..bb8145b 100644
--- a/st.info
+++ b/st.info
@@ -153,6 +153,7 @@ st| simpleterm,
153 ritm=\E[23m, 153 ritm=\E[23m,
154 rmacs=\E(B, 154 rmacs=\E(B,
155 rmcup=\E[?1049l, 155 rmcup=\E[?1049l,
156 rmir=\E[4l,
156 rmkx=\E[?1l\E>, 157 rmkx=\E[?1l\E>,
157 rmso=\E[23m, 158 rmso=\E[23m,
158 rmul=\E[m, 159 rmul=\E[m,
@@ -168,6 +169,7 @@ st| simpleterm,
168 sitm=\E[3m, 169 sitm=\E[3m,
169 smacs=\E(0, 170 smacs=\E(0,
170 smcup=\E[?1049h, 171 smcup=\E[?1049h,
172 smir=\E[4h,
171 smkx=\E[?1h\E=, 173 smkx=\E[?1h\E=,
172 smso=\E[3m, 174 smso=\E[3m,
173 smul=\E[4m, 175 smul=\E[4m,