aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/main.c b/main.c
index 06b2ca9..1c6e57f 100644
--- a/main.c
+++ b/main.c
@@ -182,23 +182,23 @@ kpress(XKeyEvent * e) {
182 switch(ksym) { 182 switch(ksym) {
183 default: return; 183 default: return;
184 case XK_h: 184 case XK_h:
185 ksym = XK_Left; 185 ksym = XK_Left;
186 break; 186 break;
187 case XK_l: 187 case XK_l:
188 ksym = XK_Right; 188 ksym = XK_Right;
189 break; 189 break;
190 case XK_j: 190 case XK_j:
191 ksym = XK_Next; 191 ksym = XK_Next;
192 break; 192 break;
193 case XK_l: 193 case XK_k:
194 ksym = XK_Prior; 194 ksym = XK_Prior;
195 break; 195 break;
196 case XK_g: 196 case XK_g:
197 ksym = XK_Home; 197 ksym = XK_Home;
198 break; 198 break;
199 case XK_G: 199 case XK_G:
200 ksym = XK_End; 200 ksym = XK_End;
201 break; 201 break;
202 } 202 }
203 } 203 }
204 switch(ksym) { 204 switch(ksym) {