update TODO
This commit is contained in:
parent
9d5ea14b9d
commit
aede91e22a
2 changed files with 9 additions and 3 deletions
11
TODO
11
TODO
|
@ -9,7 +9,12 @@ code & interface
|
|||
----------------
|
||||
|
||||
* clean selection code
|
||||
* use the real x11 clipboard
|
||||
* clean terminfo entry
|
||||
* utf8
|
||||
* clean and complete terminfo entry
|
||||
* fix shift up/down (shift selection in emacs)
|
||||
* ...
|
||||
|
||||
misc
|
||||
----
|
||||
|
||||
$ grep -nE 'XXX|TODO' st.c
|
||||
|
||||
|
|
1
st.c
1
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;
|
||||
|
|
Loading…
Reference in a new issue