1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 22:17:59 +01:00

go_tab -> tab_go

This commit is contained in:
Martin Stubenschrott
2007-04-11 18:38:18 +00:00
parent b6c131e5b3
commit 6797ee2cfb
2 changed files with 2 additions and 3 deletions

View File

@@ -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
],
[