added uppercase chars for C-u and C-h as well
This commit is contained in:
parent
e4fbc43253
commit
0af369ba65
1 changed files with 2 additions and 0 deletions
2
main.c
2
main.c
|
@ -172,9 +172,11 @@ kpress(XKeyEvent * e)
|
|||
return;
|
||||
break;
|
||||
case XK_h:
|
||||
case XK_H:
|
||||
ksym = XK_BackSpace;
|
||||
break;
|
||||
case XK_u:
|
||||
case XK_U:
|
||||
text[0] = 0;
|
||||
match(text);
|
||||
drawmenu();
|
||||
|
|
Loading…
Reference in a new issue