summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-06-18 21:18:06 +0200
committerDave Davenport <qball@gmpclient.org>2016-06-18 21:18:28 +0200
commit72ffebc8febd7888e11a044db75a52a8723500fe (patch)
tree7994fe27a9af9b4bc0425e08af037e6c6eefbb3e
parent5ae177cae150a0f30a91a1377d407ec096e74ad1 (diff)
Remove Tab from row-down list
-rw-r--r--source/keyb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/keyb.c b/source/keyb.c
index f9ca0cc0..5db62f24 100644
--- a/source/keyb.c
+++ b/source/keyb.c
@@ -55,7 +55,7 @@ DefaultBinding bindings[NUM_ABE] =
{ .id = ROW_LEFT, .name = "kb-row-left", .keybinding = "Control+Page_Up", .comment = "Go to the previous column" },
{ .id = ROW_RIGHT, .name = "kb-row-right", .keybinding = "Control+Page_Down", .comment = "Go to the next column" },
{ .id = ROW_UP, .name = "kb-row-up", .keybinding = "Up,Control+p,Shift+Tab,Shift+ISO_Left_Tab", .comment = "Select previous entry" },
- { .id = ROW_DOWN, .name = "kb-row-down", .keybinding = "Down,Control+n,Tab", .comment = "Select next entry" },
+ { .id = ROW_DOWN, .name = "kb-row-down", .keybinding = "Down,Control+n", .comment = "Select next entry" },
{ .id = ROW_TAB, .name = "kb-row-tab", .keybinding = "Tab", .comment = "Go to next row, if one left, accept it, if no left next mode." },
{ .id = PAGE_PREV, .name = "kb-page-prev", .keybinding = "Page_Up", .comment = "Go to the previous page" },
{ .id = PAGE_NEXT, .name = "kb-page-next", .keybinding = "Page_Down", .comment = "Go to the next page" },