1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-08 08:04:11 +01:00

Don't set bang config property for :style, :dialog, :quitall which don't support it.

This commit is contained in:
Doug Kearns
2011-06-19 00:49:34 +10:00
parent ef9a5a47e7
commit 8bc697a6e1
3 changed files with 1 additions and 6 deletions

View File

@@ -1765,7 +1765,6 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), {
}
}, {
argCount: "1",
bang: true,
completer: function (context) {
context.ignoreCase = true;
completion.dialog(context);

View File

@@ -749,10 +749,7 @@ var Tabs = Module("tabs", {
commands.add(["quita[ll]", "qa[ll]"],
"Quit this " + config.appName + " window",
function (args) { window.close(); },
{
argCount: "0",
bang: true
});
{ argCount: "0" });
commands.add(["reloada[ll]"],
"Reload all tab pages",

View File

@@ -572,7 +572,6 @@ var Styles = Module("Styles", {
}
},
{
bang: true,
completer: function (context, args) {
let compl = [];
let sheet = args["-group"].get(args["-name"]);