[patch]: map Ctrl-Shift-Tab instead of Shift-Tab to Left-Tab
Jeremy Henty <onepoint-YprzHiG/[email protected]>
| Newsgroups | gmane.comp.web.dillo.devel |
|---|---|
| Message-ID | <[email protected]> |
I know that you can do this by editing the keysrc but I think that by default Dillo should copy Firefox by using Ctrl-Tab and Ctrl-Shift-Tab to navigate among tabs and freeing Tab and Shift-Tab to navigate around the page. Patch attached. Comments? Should I push? Regards, Jeremy Henty _______________________________________________ Dillo-dev mailing list [email protected] http://lists.auriga.wearlab.de/cgi-bin/mailman/listinfo/dillo-dev
map_ctrl-shift-tab_to_left-tab
(text/plain, 883 B)
# HG changeset patch
# Parent 15cfe6a572a7de892b67f3185fe34c7b5b098e26
diff -r 15cfe6a572a7 -r bdb95e3a7598 src/keys.cc
--- a/src/keys.cc Sat Jan 08 17:56:56 2011 +0000
+++ b/src/keys.cc Mon Aug 01 01:20:38 2011 +0100
@@ -101,7 +101,8 @@
{ "open" , KEYS_OPEN , FL_CTRL , 'o' },
{ "new-window" , KEYS_NEW_WINDOW , FL_CTRL , 'n' },
{ "new-tab" , KEYS_NEW_TAB , FL_CTRL , 't' },
- { "left-tab" , KEYS_LEFT_TAB , FL_SHIFT , FL_Tab },
+ { "left-tab" , KEYS_LEFT_TAB , FL_CTRL |
+ FL_SHIFT , FL_Tab },
{ "right-tab" , KEYS_RIGHT_TAB , FL_CTRL , FL_Tab },
{ "close-tab" , KEYS_CLOSE_TAB , FL_CTRL , 'w' },
{ "find" , KEYS_FIND , FL_CTRL , 'f' },