diff options
author | Doug Kearns <dougkearns@gmail.com> | 2011-08-11 21:19:12 +1000 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2011-08-11 21:19:12 +1000 |
commit | ac3f218620ac77a2809346c50bcd752fb62db839 (patch) | |
tree | 6d09377b745420b208d195ec19f0c8c344f5ac43 /common/content | |
parent | d877fa5fea9c7cebd663375d1e868307dafc0364 (diff) | |
download | pentadactyl-ac3f218620ac77a2809346c50bcd752fb62db839.tar.gz |
Fix g] help spec and simplify gb/gB descriptions.
Diffstat (limited to 'common/content')
-rw-r--r-- | common/content/tabs.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/content/tabs.js b/common/content/tabs.js index 395cabcd..3d9e6c7f 100644 --- a/common/content/tabs.js +++ b/common/content/tabs.js @@ -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 }); |