aboutsummaryrefslogtreecommitdiffstats
path: root/background_page.html
diff options
context:
space:
mode:
authorMark Stosberg2010-01-12 09:27:49 +0800
committerIlya2010-01-12 12:10:55 +0800
commit62272e636b32061c95eef2e1cd9d8bddec52550b (patch)
treed97418023b7674de764bab400d20c719b1051aa7 /background_page.html
parent6e10609956d054dff7fa876b60207db5671c16d2 (diff)
downloadvimium-62272e636b32061c95eef2e1cd9d8bddec52550b.tar.bz2
Reverse J and K for tab navigation. Closes issue #59
http://github.com/philc/vimium/issues#issue/59
Diffstat (limited to 'background_page.html')
-rw-r--r--background_page.html4
1 files changed, 2 insertions, 2 deletions
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;