Browse Source

add ^a and ^e keybindings

master
pancake 14 years ago
parent
commit
29686bd1b8
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      dmenu.c

+ 8
- 0
dmenu.c View File

@@ -394,6 +394,14 @@ kpress(XKeyEvent * e) {
switch (ksym) {
default: /* ignore other control sequences */
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:
ksym = XK_Escape;


Loading…
Cancel
Save