From 62272e636b32061c95eef2e1cd9d8bddec52550b Mon Sep 17 00:00:00 2001 From: Mark Stosberg Date: Tue, 12 Jan 2010 09:27:49 +0800 Subject: Reverse J and K for tab navigation. Closes issue #59 http://github.com/philc/vimium/issues#issue/59 --- README.markdown | 4 ++-- background_page.html | 4 ++-- 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) -- cgit v1.2.3