diff --git a/common/content/liberator.js b/common/content/liberator.js index 902c41b9..2a4007bb 100644 --- a/common/content/liberator.js +++ b/common/content/liberator.js @@ -708,7 +708,7 @@ const liberator = (function () //{{{ args = args.string; if (args[0] == ":") - var method = function () liberator.execute(args); + var method = function () liberator.execute(args, null, true); else method = liberator.eval("(function () {" + args + "})"); diff --git a/common/content/tabs.js b/common/content/tabs.js index 598e8c0e..8802e1b6 100644 --- a/common/content/tabs.js +++ b/common/content/tabs.js @@ -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); } }, { diff --git a/common/content/ui.js b/common/content/ui.js index 5cfae14b..45221703 100644 --- a/common/content/ui.js +++ b/common/content/ui.js @@ -934,7 +934,7 @@ function CommandLine() //{{{ "Run a command silently", function (args) { - commandline.runSilently(function () liberator.execute(args[0])); + commandline.runSilently(function () liberator.execute(args[0], null, true)); }, { completer: function (context) completion.ex(context),