1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-29 11:52:26 +01:00

Fix g] help spec and simplify gb/gB descriptions.

This commit is contained in:
Doug Kearns
2011-08-11 21:19:12 +10:00
parent d877fa5fea
commit ac3f218620
3 changed files with 6 additions and 6 deletions

View File

@@ -1004,12 +1004,12 @@ var Tabs = Module("tabs", {
{ count: true });
mappings.add([modes.NORMAL], ["gb"],
"Repeat last :buffer[!] command",
"Repeat last :buffer command",
function ({ count }) { tabs.switchTo(null, null, count, false); },
{ count: true });
mappings.add([modes.NORMAL], ["gB"],
"Repeat last :buffer[!] command in reverse direction",
"Repeat last :buffer command in reverse direction",
function ({ count }) { tabs.switchTo(null, null, count, true); },
{ count: true });