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:
1
TODO
1
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
|
- 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
|
||||||
|
|||||||
@@ -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
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
|||||||
Reference in New Issue
Block a user