summaryrefslogtreecommitdiffstats
path: root/source/keyb.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2015-06-15 08:48:13 +0200
committerDave Davenport <qball@gmpclient.org>2015-06-15 08:48:13 +0200
commit25633ca4dc7b4259087f19f6bf8ffec3ccbd033f (patch)
treeb7dbea5d11b6e2548f2f52969b6f150fd5899bbf /source/keyb.c
parent638b5e022f1931b2e1ba6bb25b442ed7f7f33ba5 (diff)
Issue #66, allow keybindings for navigation to be changed.
up,down,left,right
Diffstat (limited to 'source/keyb.c')
-rw-r--r--source/keyb.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/source/keyb.c b/source/keyb.c
index ff1b1e6b..b8474f65 100644
--- a/source/keyb.c
+++ b/source/keyb.c
@@ -182,6 +182,31 @@ DefaultBinding bindings[NUM_ABE] =
.name = "kb-custom-9",
.keybinding = "Alt+9"
},
+ {
+ .id = ROW_LEFT,
+ .name = "kb-row-left",
+ .keybinding = "Control+Page_Up"
+ },
+ {
+ .id = ROW_RIGHT,
+ .name = "kb-row-right",
+ .keybinding = "Control+Page_Down"
+ },
+ {
+ .id = ROW_UP,
+ .name = "kb-row-up",
+ .keybinding = "Up,Control+p,Shift+Tab"
+ },
+ {
+ .id = ROW_DOWN,
+ .name = "kb-row-down",
+ .keybinding = "Down,Control+n"
+ },
+ {
+ .id = ROW_TAB,
+ .name = "kb-row-tab",
+ .keybinding = "Tab"
+ }
};