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]> |
Jorge Arellano Cid wrote: > The patch also needs to modify the help file in doc/ I fixed the key bindings table in doc/user_help.html . Does anything else need updating? 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, 1.6 KB)
# HG changeset patch
# Parent 435b005510a73507089d5aba58e510afde062272
diff -r 435b005510a7 doc/user_help.html
--- a/doc/user_help.html Mon Aug 01 15:03:05 2011 -0400
+++ b/doc/user_help.html Tue Aug 02 23:35:47 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 435b005510a7 src/keys.cc
--- a/src/keys.cc Mon Aug 01 15:03:05 2011 -0400
+++ b/src/keys.cc Tue Aug 02 23:35:47 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' },