diff options
| -rw-r--r-- | README.markdown | 4 | ||||
| -rw-r--r-- | background_page.html | 4 | ||||
| -rw-r--r-- | settings.html | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/README.markdown b/README.markdown index 4e4b5ced..5a6f4b26 100644 --- a/README.markdown +++ b/README.markdown @@ -50,8 +50,8 @@ Navigating your history: fw, fo, L go forward in history Manipulating tabs: - J, gt next tab - K, gT previous tab + J, gT go one tab left + K, gt go one tab right t create tab d close current tab u restore closed tab (i.e. unwind the 'd' command) diff --git a/background_page.html b/background_page.html index 8d552a32..1c326cba 100644 --- a/background_page.html +++ b/background_page.html @@ -251,8 +251,8 @@ keyToCommandRegistry['yy'] = 'copyCurrentUrl'; - keyToCommandRegistry['J'] = nextTab; - keyToCommandRegistry['K'] = previousTab; + keyToCommandRegistry['K'] = nextTab; + keyToCommandRegistry['J'] = previousTab; keyToCommandRegistry['gt'] = nextTab; keyToCommandRegistry['gT'] = previousTab; diff --git a/settings.html b/settings.html index c4b98262..a7d84e3f 100644 --- a/settings.html +++ b/settings.html @@ -129,8 +129,8 @@ Navigating your history: fw, fo, L go forward in history Manipulating tabs: - J, gt next tab - K, gT previous tab + J, gT go one tab left + K, gt go one tab right t create tab d close current tab u restore closed tab (i.e. unwind the 'd' command) |
