diff options
| author | Mark Stosberg | 2010-01-12 09:27:49 +0800 |
|---|---|---|
| committer | Ilya | 2010-01-12 12:10:55 +0800 |
| commit | 62272e636b32061c95eef2e1cd9d8bddec52550b (patch) | |
| tree | d97418023b7674de764bab400d20c719b1051aa7 | |
| parent | 6e10609956d054dff7fa876b60207db5671c16d2 (diff) | |
| download | vimium-62272e636b32061c95eef2e1cd9d8bddec52550b.tar.bz2 | |
Reverse J and K for tab navigation. Closes issue #59
http://github.com/philc/vimium/issues#issue/59
| -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) |
