pinosaur
/
dmenu.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5336608
)
added vi-like key-bindings for keyboards without cursor keys (they are undocumented...
author
arg@mig29
<unknown>
Thu, 14 Dec 2006 13:40:58 +0000
(14:40 +0100)
committer
arg@mig29
<unknown>
Thu, 14 Dec 2006 13:40:58 +0000
(14:40 +0100)
config.mk
patch
|
blob
|
history
main.c
patch
|
blob
|
history
diff --git
a/config.mk
b/config.mk
index
7beebff
..
00fe5a9
100644
(file)
--- a/
config.mk
+++ b/
config.mk
@@
-1,5
+1,5
@@
# dmenu version
-VERSION = 1.
7.1
+VERSION = 1.
8
# Customize below to fit your system
diff --git
a/main.c
b/main.c
index
c10dfaa
..
06b2ca9
100644
(file)
--- a/
main.c
+++ b/
main.c
@@
-178,6
+178,29
@@
kpress(XKeyEvent * e) {
break;
}
}
+ if(e->state & Mod1Mask) {
+ switch(ksym) {
+ default: return;
+ case XK_h:
+ ksym = XK_Left;
+ break;
+ case XK_l:
+ ksym = XK_Right;
+ break;
+ case XK_j:
+ ksym = XK_Next;
+ break;
+ case XK_l:
+ ksym = XK_Prior;
+ break;
+ case XK_g:
+ ksym = XK_Home;
+ break;
+ case XK_G:
+ ksym = XK_End;
+ break;
+ }
+ }
switch(ksym) {
default:
if(num && !iscntrl((int) buf[0])) {