X-Git-Url: https://jasonwoof.com/gitweb/?p=st.git;a=blobdiff_plain;f=st.c;h=e6bb91f09ac94cd827a33b125dd1bbbeea99831a;hp=11ea9fcfab662968200c63b0c18180ca20ed3cee;hb=aede91e22a41cbf4b11d64faa42575d1bdbd8446;hpb=9d5ea14b9dffac863b41432e4ce12b5624592000 diff --git a/st.c b/st.c index 11ea9fc..e6bb91f 100644 --- a/st.c +++ b/st.c @@ -1835,6 +1835,7 @@ kpress(XEvent *ev) { case XK_Down: case XK_Left: case XK_Right: + /* XXX: shift up/down doesn't work */ sprintf(buf, "\033%c%c", IS_SET(MODE_APPKEYPAD) ? 'O' : '[', (shift ? "dacb":"DACB")[ksym - XK_Left]); ttywrite(buf, 3); break;