diff options
author | Christoph Lohmann <20h@r-36.net> | 2012-11-15 16:21:23 +0100 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2012-11-15 16:21:23 +0100 |
commit | 801ea034b652025dc22d26f6e1b802de932346da (patch) | |
tree | 1d19d510709291bbb93502e258f7bee2782bbccf /st.c | |
parent | e87d21bb3d6b48f68340c193dff8b6021f00be10 (diff) | |
download | st-801ea034b652025dc22d26f6e1b802de932346da.tar.gz st-801ea034b652025dc22d26f6e1b802de932346da.zip |
Import the patch of Eckehard Berns to add insert mode. Thanks!
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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); |