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

Remove :winclose and :winopen commmands from Xulmus.

These are generally unsupported in SB and probably not worth supporting
in Xulmus.
This commit is contained in:
Doug Kearns
2009-03-29 23:49:18 +11:00
parent 7ad4abf333
commit 3ff4fda7ca
3 changed files with 0 additions and 37 deletions

View File

@@ -464,27 +464,6 @@ const config = { //{{{
literal: 0
});
commands.add(["winc[lose]", "wc[lose]"],
"Close window",
function () { window.close(); },
{ argCount: "0" });
commands.add(["wino[pen]", "wo[pen]", "wine[dit]"],
"Open one or more URLs in a new window",
function (args)
{
args = args.string;
if (args)
liberator.open(args, liberator.NEW_WINDOW);
else
liberator.open("about:blank", liberator.NEW_WINDOW);
},
{
completer: function (context) completion.url(context),
literal: 0
});
/////////////////////////////////////////////////////////////////////////////}}}
////////////////////// OPTIONS /////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////{{{