Import the patch of Eckehard Berns to add insert mode. Thanks!
This commit is contained in:
parent
e87d21bb3d
commit
801ea034b6
4
st.c
4
st.c
@ -2100,6 +2100,10 @@ tputc(char *c, int len) {
|
|||||||
sel.bx = -1;
|
sel.bx = -1;
|
||||||
if(IS_SET(MODE_WRAP) && term.c.state & CURSOR_WRAPNEXT)
|
if(IS_SET(MODE_WRAP) && term.c.state & CURSOR_WRAPNEXT)
|
||||||
tnewline(1); /* always go to first col */
|
tnewline(1); /* always go to first col */
|
||||||
|
if(IS_SET(MODE_INSERT) && term.c.x+1 < term.col)
|
||||||
|
memmove(&term.line[term.c.y][term.c.x+1],
|
||||||
|
&term.line[term.c.y][term.c.x],
|
||||||
|
(term.col - term.c.x - 1) * sizeof(Glyph));
|
||||||
tsetchar(c, &term.c.attr, term.c.x, term.c.y);
|
tsetchar(c, &term.c.attr, term.c.x, term.c.y);
|
||||||
if(term.c.x+1 < term.col)
|
if(term.c.x+1 < term.col)
|
||||||
tmoveto(term.c.x+1, term.c.y);
|
tmoveto(term.c.x+1, term.c.y);
|
||||||
|
2
st.info
2
st.info
@ -153,6 +153,7 @@ st| simpleterm,
|
|||||||
ritm=\E[23m,
|
ritm=\E[23m,
|
||||||
rmacs=\E(B,
|
rmacs=\E(B,
|
||||||
rmcup=\E[?1049l,
|
rmcup=\E[?1049l,
|
||||||
|
rmir=\E[4l,
|
||||||
rmkx=\E[?1l\E>,
|
rmkx=\E[?1l\E>,
|
||||||
rmso=\E[23m,
|
rmso=\E[23m,
|
||||||
rmul=\E[m,
|
rmul=\E[m,
|
||||||
@ -168,6 +169,7 @@ st| simpleterm,
|
|||||||
sitm=\E[3m,
|
sitm=\E[3m,
|
||||||
smacs=\E(0,
|
smacs=\E(0,
|
||||||
smcup=\E[?1049h,
|
smcup=\E[?1049h,
|
||||||
|
smir=\E[4h,
|
||||||
smkx=\E[?1h\E=,
|
smkx=\E[?1h\E=,
|
||||||
smso=\E[3m,
|
smso=\E[3m,
|
||||||
smul=\E[4m,
|
smul=\E[4m,
|
||||||
|
Loading…
Reference in New Issue
Block a user