mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-04-03 11:03:35 +02:00
Don't set bang config property for :style, :dialog, :quitall which don't support it.
This commit is contained in:
@@ -1765,7 +1765,6 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), {
|
|||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
argCount: "1",
|
argCount: "1",
|
||||||
bang: true,
|
|
||||||
completer: function (context) {
|
completer: function (context) {
|
||||||
context.ignoreCase = true;
|
context.ignoreCase = true;
|
||||||
completion.dialog(context);
|
completion.dialog(context);
|
||||||
|
|||||||
@@ -749,10 +749,7 @@ var Tabs = Module("tabs", {
|
|||||||
commands.add(["quita[ll]", "qa[ll]"],
|
commands.add(["quita[ll]", "qa[ll]"],
|
||||||
"Quit this " + config.appName + " window",
|
"Quit this " + config.appName + " window",
|
||||||
function (args) { window.close(); },
|
function (args) { window.close(); },
|
||||||
{
|
{ argCount: "0" });
|
||||||
argCount: "0",
|
|
||||||
bang: true
|
|
||||||
});
|
|
||||||
|
|
||||||
commands.add(["reloada[ll]"],
|
commands.add(["reloada[ll]"],
|
||||||
"Reload all tab pages",
|
"Reload all tab pages",
|
||||||
|
|||||||
@@ -572,7 +572,6 @@ var Styles = Module("Styles", {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
bang: true,
|
|
||||||
completer: function (context, args) {
|
completer: function (context, args) {
|
||||||
let compl = [];
|
let compl = [];
|
||||||
let sheet = args["-group"].get(args["-name"]);
|
let sheet = args["-group"].get(args["-name"]);
|
||||||
|
|||||||
Reference in New Issue
Block a user