Xinqi Bao's Git
projects
/
st.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
Import the patch of Eckehard Berns to add insert mode. Thanks!
[st.git]
/
st.c
diff --git
a/st.c
b/st.c
index
14408c5
..
7b7bd55
100644
(file)
--- a/
st.c
+++ b/
st.c
@@
-59,8
+59,8
@@
#define STR_ARG_SIZ 16
#define DRAW_BUF_SIZ 20*1024
#define UTF_SIZ 4
#define STR_ARG_SIZ 16
#define DRAW_BUF_SIZ 20*1024
#define UTF_SIZ 4
-#define XK_
NO_MOD
UINT_MAX
-#define XK_
ANY_MOD
0
+#define XK_
ANY_MOD
UINT_MAX
+#define XK_
NO_MOD
0
#define REDRAW_TIMEOUT (80*1000) /* 80 ms */
#define REDRAW_TIMEOUT (80*1000) /* 80 ms */
@@
-2100,6
+2100,10
@@
tputc(char *c, int len) {
sel.bx = -1;
if(IS_SET(MODE_WRAP) && term.c.state & CURSOR_WRAPNEXT)
tnewline(1); /* always go to first col */
sel.bx = -1;
if(IS_SET(MODE_WRAP) && term.c.state & CURSOR_WRAPNEXT)
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);
if(term.c.x+1 < term.col)
tmoveto(term.c.x+1, term.c.y);
tsetchar(c, &term.c.attr, term.c.x, term.c.y);
if(term.c.x+1 < term.col)
tmoveto(term.c.x+1, term.c.y);
@@
-2699,21
+2703,32
@@
kmap(KeySym k, uint state) {
if(kp->k != k)
continue;
if(kp->k != k)
continue;
- if((state & mask) != mask &&
- (mask == XK_NO_MOD && state))
+
+ if(mask == XK_NO_MOD && state)
+ continue;
+ if(mask != XK_ANY_MOD && mask != XK_NO_MOD && !state)
+ continue;
+ if((state & mask) != state)
continue;
continue;
+
if((kp->appkey < 0 && IS_SET(MODE_APPKEYPAD)) ||
if((kp->appkey < 0 && IS_SET(MODE_APPKEYPAD)) ||
- (kp->appkey > 0 && !IS_SET(MODE_APPKEYPAD)))
+ (kp->appkey > 0 && !IS_SET(MODE_APPKEYPAD))) {
continue;
continue;
+ }
+
if((kp->appcursor < 0 && IS_SET(MODE_APPCURSOR)) ||
if((kp->appcursor < 0 && IS_SET(MODE_APPCURSOR)) ||
- (kp->appcursor > 0 && !IS_SET(MODE_APPCURSOR)))
+ (kp->appcursor > 0 && !IS_SET(MODE_APPCURSOR))) {
continue;
continue;
+ }
+
if((kp->crlf < 0 && IS_SET(MODE_CRLF)) ||
if((kp->crlf < 0 && IS_SET(MODE_CRLF)) ||
- (kp->crlf > 0 && !IS_SET(MODE_CRLF)))
+ (kp->crlf > 0 && !IS_SET(MODE_CRLF))) {
continue;
continue;
+ }
return kp->s;
}
return kp->s;
}
+
return NULL;
}
return NULL;
}
@@
-2755,6
+2770,7
@@
kpress(XEvent *ev) {
memcpy(cp, xstr, len);
len = cp - buf + len;
}
memcpy(cp, xstr, len);
len = cp - buf + len;
}
+
ttywrite(buf, len);
if(IS_SET(MODE_ECHO))
techo(buf, len);
ttywrite(buf, len);
if(IS_SET(MODE_ECHO))
techo(buf, len);
@@
-2869,7
+2885,7
@@
main(int argc, char *argv[]) {
opt_class = argv[i];
break;
case 'e':
opt_class = argv[i];
break;
case 'e':
- /* eat
every
remaining arguments */
+ /* eat
all
remaining arguments */
if(++i < argc)
opt_cmd = &argv[i];
goto run;
if(++i < argc)
opt_cmd = &argv[i];
goto run;
@@
-2924,6
+2940,7
@@
run:
ttynew();
selinit();
run();
ttynew();
selinit();
run();
+
return 0;
}
return 0;
}