aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Hawthorn <john.hawthorn@gmail.com>2012-02-23 05:43:52 -0800
committerJohn Hawthorn <john.hawthorn@gmail.com>2012-02-23 05:44:58 -0800
commit74a3fd2430abc1129ecb7663e2a4914336b26501 (patch)
treeed44b67dec89f83ba6334b8186b63e6ce9a63031
parent7528c12ea495a781a62a0108e727a762e399f93f (diff)
downloadmirror-meh-74a3fd2430abc1129ecb7663e2a4914336b26501.tar.gz
mirror-meh-74a3fd2430abc1129ecb7663e2a4914336b26501.tar.bz2
mirror-meh-74a3fd2430abc1129ecb7663e2a4914336b26501.zip
Added left and right keybindings (fixes #1)
Thanks c00kiemon5ter and digitaldump!
-rw-r--r--src/xlib.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/xlib.c b/src/xlib.c
index 393617d..9e1a167 100644
--- a/src/xlib.c
+++ b/src/xlib.c
@@ -201,9 +201,15 @@ void handlekeypress(XEvent *event){
key_action();
break;
case XK_j:
+ case XK_l:
+ case XK_Right:
+ case XK_Down:
key_next();
break;
case XK_k:
+ case XK_h:
+ case XK_Left:
+ case XK_Up:
key_prev();
break;
case XK_r: