summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-01-16 16:38:29 +0100
committerDave Davenport <qball@gmpclient.org>2016-01-16 16:38:29 +0100
commit64cfdf3f0d432a9be5bfe55b666d8f2f738f5dfa (patch)
tree136620952fef6cdcb93d05f253733f10d4340dbd
parentec24e4426ea4696104b17265635ea475f4038e61 (diff)
Fix issue #319 ADd ISO_Left_Tab to default binding.
-rw-r--r--source/keyb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/keyb.c b/source/keyb.c
index 03c4a143..7c6e7046 100644
--- a/source/keyb.c
+++ b/source/keyb.c
@@ -56,7 +56,7 @@ DefaultBinding bindings[NUM_ABE] =
{ .id = DELETE_ENTRY, .name = "kb-delete-entry", .keybinding = "Shift+Delete" },
{ .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_UP, .name = "kb-row-up", .keybinding = "Up,Control+p,Shift+Tab,Shift+ISO_Left_Tab" },
{ .id = ROW_DOWN, .name = "kb-row-down", .keybinding = "Down,Control+n" },
{ .id = ROW_TAB, .name = "kb-row-tab", .keybinding = "Tab" },
{ .id = PAGE_PREV, .name = "kb-page-prev", .keybinding = "Page_Up" },