all repos — st @ c5dd7fb377d4bfe9988ef150a55b4a3756d09524

st (suckless terminal) config

Applying the patch of the little girl <yui@blekksprut.net> to make cjk input

possible. Thanks!
Christoph Lohmann 20h@r-36.net
commit

c5dd7fb377d4bfe9988ef150a55b4a3756d09524

parent

b56a0da283bd09d5084f472353c1a0b1b084613e

1 files changed, 4 insertions(+), 1 deletions(-)

jump to
M st.cst.c

@@ -2602,9 +2602,11 @@

void focus(XEvent *ev) { if(ev->type == FocusIn) { + XSetICFocus(xw.xic); xw.state |= WIN_FOCUSED; xseturgency(0); } else { + XUnsetICFocus(xw.xic); xw.state &= ~WIN_FOCUSED; } }

@@ -2774,7 +2776,7 @@ tv = NULL;

while(XPending(xw.dpy)) { XNextEvent(xw.dpy, &ev); - if(XFilterEvent(&ev, xw.win)) + if(XFilterEvent(&ev, None)) continue; if(handler[ev.type]) (handler[ev.type])(&ev);

@@ -2849,6 +2851,7 @@ }

run: setlocale(LC_CTYPE, ""); + XSetLocaleModifiers(""); tnew(80, 24); xinit(); ttynew();