1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 07:07:58 +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

1
TODO
View File

@@ -6,7 +6,6 @@ BUGS:
- switching tabs while HINT_MODE_ALWAYS is on does not redisplay hints in new tabs, but exits hint mode - 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 - hints are not placed correctly when zoom is used
- flashing frame is not perfect - flashing frame is not perfect
- :bm! is broken
FEATURES: FEATURES:
9 marks of a Location (also should work with directories), [m a-zA-Z] to set it, [' a-zA-Z] to go there 9 marks of a Location (also should work with directories), [m a-zA-Z] to set it, [' a-zA-Z] to go there

View File

@@ -246,7 +246,7 @@ var g_commands = [/*{{{*/
["tabnext", "tn", "tnext"], ["tabnext", "tn", "tnext"],
"Switch to the next tab", "Switch to the next tab",
"Cycles to the first tab, when the last is selected.", "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 null
], ],
[ [
@@ -260,7 +260,7 @@ var g_commands = [/*{{{*/
["tabprevious", "tp", "tprev", "tprevious"], ["tabprevious", "tp", "tprev", "tprevious"],
"Switch to the previous tab", "Switch to the previous tab",
"Cycles to the last tab, when the first is selected.", "Cycles to the last tab, when the first is selected.",
function(args, count) { go_tab(-1); }, function(args, count) { tab_go(-1); },
null null
], ],
[ [