1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 05:57:59 +01:00

Don't change the command line when running :tab, :time, and :silent.

This commit is contained in:
Doug Kearns
2009-08-21 01:37:35 +10:00
parent b0f4af5e55
commit 9909a85757
3 changed files with 4 additions and 4 deletions

View File

@@ -359,7 +359,7 @@ function Tabs() //{{{
function (args)
{
liberator.forceNewTab = true;
liberator.execute(args.string);
liberator.execute(args.string, null, true);
liberator.forceNewTab = false;
},
{
@@ -375,7 +375,7 @@ function Tabs() //{{{
for (let i = 0; i < tabs.count; i++)
{
tabs.select(i);
liberator.execute(args.string);
liberator.execute(args.string, null, true);
}
},
{