diff options
-rw-r--r-- | doc/user_help.html | 2 | ||||
-rw-r--r-- | src/keys.cc | 3 | ||||
-rw-r--r-- | src/keysrc | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/doc/user_help.html b/doc/user_help.html index ec1c73e7..4b35e6e3 100644 --- a/doc/user_help.html +++ b/doc/user_help.html @@ -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 --git a/src/keys.cc b/src/keys.cc index e5510ef0..3605311f 100644 --- a/src/keys.cc +++ b/src/keys.cc @@ -101,7 +101,8 @@ static const KeyBinding_t default_keys[] = { { "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' }, @@ -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. |