aboutsummaryrefslogtreecommitdiffstats
path: root/background_page.html
diff options
context:
space:
mode:
authorJim Ramsay2009-12-30 01:59:35 +0800
committerIlya2010-01-04 15:00:27 +0800
commit7ae2ce0f82b1c83c670fe2aca3f9e333c6f5f94d (patch)
treed583f45af74782b1fe9afb48400999a085eb8bbb /background_page.html
parent467bf67df2310ea3540c80554b7c04c9d9a4c03f (diff)
downloadvimium-7ae2ce0f82b1c83c670fe2aca3f9e333c6f5f94d.tar.bz2
Add bindings 'gt'->nextTab 'gT'->previousTab
These are the default vim bindings to navigate between tabs.
Diffstat (limited to 'background_page.html')
-rw-r--r--background_page.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/background_page.html b/background_page.html
index e57b1601..61c6cf91 100644
--- a/background_page.html
+++ b/background_page.html
@@ -249,6 +249,8 @@
keyToCommandRegistry['J'] = nextTab;
keyToCommandRegistry['K'] = previousTab;
+ keyToCommandRegistry['gt'] = nextTab;
+ keyToCommandRegistry['gT'] = previousTab;
keyToCommandRegistry['t'] = createTab;
keyToCommandRegistry['d'] = removeTab;