1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-20 19:24:12 +01:00

Fix :{count}buffer [arg].

--HG--
extra : rebase_source : 6effe71a819b511b28b127ec570a2859fe54506e
This commit is contained in:
Doug Kearns
2013-10-06 22:09:06 +11:00
parent 2e2947b703
commit cf7e0c479d
2 changed files with 9 additions and 4 deletions

View File

@@ -798,7 +798,12 @@ var Tabs = Module("tabs", {
if (config.has("tabbrowser")) {
commands.add(["b[uffer]"],
"Switch to a buffer",
function (args) { tabs.switchTo(args[0], args.bang, args.count); }, {
function (args) {
if (args.length)
tabs.switchTo(args[0], args.bang, args.count);
else if (args.count)
tabs.switchTo(String(args.count));
}, {
argCount: "?",
bang: true,
count: true,

View File

@@ -224,9 +224,9 @@
<p>
If argument is neither a full URL nor an index but uniquely identifies a
buffer, by a partial match with the URL or title, it is selected.
With <oa>!</oa> the next buffer matching the argument is selected,
even if it cannot be identified uniquely. Use <k>b</k> as a
shortcut to open this prompt.
With <oa>!</oa> the next, or <oa>count</oa>th, buffer matching the
argument is selected, even if it cannot be identified uniquely. Use
<k>b</k> as a shortcut to open this prompt.
</p>
<p>If argument is <em>#</em>, the alternate buffer will be selected (see <k name="C-^"/>).</p>