From 6797ee2cfb9d6996368ab4da16be8d83368d6316 Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Wed, 11 Apr 2007 18:38:18 +0000 Subject: [PATCH] go_tab -> tab_go --- TODO | 1 - chrome/content/vimperator/commands.js | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/TODO b/TODO index e5a76d97..e3fdf26d 100644 --- a/TODO +++ b/TODO @@ -6,7 +6,6 @@ BUGS: - switching tabs while HINT_MODE_ALWAYS is on does not redisplay hints in new tabs, but exits hint mode - hints are not placed correctly when zoom is used - flashing frame is not perfect -- :bm! is broken FEATURES: 9 marks of a Location (also should work with directories), [m a-zA-Z] to set it, [' a-zA-Z] to go there diff --git a/chrome/content/vimperator/commands.js b/chrome/content/vimperator/commands.js index 3b405dbc..c040b00e 100644 --- a/chrome/content/vimperator/commands.js +++ b/chrome/content/vimperator/commands.js @@ -246,7 +246,7 @@ var g_commands = [/*{{{*/ ["tabnext", "tn", "tnext"], "Switch to the next tab", "Cycles to the first tab, when the last is selected.", - function(args, special, count) { go_tab(0); }, + function(args, special, count) { tab_go(0); }, null ], [ @@ -260,7 +260,7 @@ var g_commands = [/*{{{*/ ["tabprevious", "tp", "tprev", "tprevious"], "Switch to the previous tab", "Cycles to the last tab, when the first is selected.", - function(args, count) { go_tab(-1); }, + function(args, count) { tab_go(-1); }, null ], [