add ^a and ^e keybindings
This commit is contained in:
parent
052ffae192
commit
29686bd1b8
8
dmenu.c
8
dmenu.c
@ -394,6 +394,14 @@ kpress(XKeyEvent * e) {
|
|||||||
switch (ksym) {
|
switch (ksym) {
|
||||||
default: /* ignore other control sequences */
|
default: /* ignore other control sequences */
|
||||||
return;
|
return;
|
||||||
|
case XK_a:
|
||||||
|
case XK_A:
|
||||||
|
cursor = 0;
|
||||||
|
break;
|
||||||
|
case XK_e:
|
||||||
|
case XK_E:
|
||||||
|
cursor = strlen(text);
|
||||||
|
break;
|
||||||
case XK_c:
|
case XK_c:
|
||||||
case XK_C:
|
case XK_C:
|
||||||
ksym = XK_Escape;
|
ksym = XK_Escape;
|
||||||
|
Loading…
Reference in New Issue
Block a user