From 74a3fd2430abc1129ecb7663e2a4914336b26501 Mon Sep 17 00:00:00 2001 From: John Hawthorn Date: Thu, 23 Feb 2012 05:43:52 -0800 Subject: Added left and right keybindings (fixes #1) Thanks c00kiemon5ter and digitaldump! --- src/xlib.c | 6 ++++++ 1 file changed, 6 insertions(+) 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: -- cgit v1.2.3