Re: [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]> |
corvid wrote: > Jeremy wrote: > > > > I fixed the key bindings table in doc/user_help.html . Does > > anything else need updating? > > keysrc Latest version attached! Regards, Jeremy Henty _______________________________________________ Dillo-dev mailing list [email protected] http://lists.auriga.wearlab.de/cgi-bin/mailman/listinfo/dillo-dev
bind_ctrl-shift-tab_to_left-tab
(text/plain, 2 KB)
# HG changeset patch
# Parent 8a670750be3d6cc46cfd6752d76869c36eb2c74b
Bind <Ctrl><Shift>Tab to "left-tab" instead of <Shift>Tab.
diff -r 8a670750be3d doc/user_help.html
--- a/doc/user_help.html Tue Aug 02 23:25:49 2011 +0200
+++ b/doc/user_help.html Wed Aug 03 08:10:33 2011 +0100
@@ -309,7 +309,7 @@
<tr><td>Shift-Back or "<b>.</b>" <td>> <td>next page
<tr><td>Alt-F <td>File <td>file menu
<tr><td>Ctrl-TabKey <td>TabKey <td>Next tab
-<tr><td>Shift-TabKey <td>TabKey <td>Previous tab
+<tr><td>Ctrl-Shift-TabKey <td>TabKey <td>Previous tab
<tr><td>Esc <td>escape <td>close dialog,
close findbar,<br>
Hide/show control panels
diff -r 8a670750be3d src/keys.cc
--- a/src/keys.cc Tue Aug 02 23:25:49 2011 +0200
+++ b/src/keys.cc Wed Aug 03 08:10:33 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' },
diff -r 8a670750be3d src/keysrc
--- a/src/keysrc Tue Aug 02 23:25:49 2011 +0200
+++ b/src/keysrc Wed Aug 03 08:10:33 2011 +0100
@@ -38,7 +38,7 @@
#<ctrl>q = close-all
# "left-tab" and "right-tab" switch to the left/right of the current tab.
-# <shift>tab = left-tab
+# <ctrl><shift>tab = left-tab
# <ctrl>tab = right-tab
# "back" and "forward" move back/forward through the browser history.