diff --git a/common/content/dactyl.js b/common/content/dactyl.js index 998fe994..33f3f203 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -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); diff --git a/common/content/tabs.js b/common/content/tabs.js index fee88c92..f27f5e37 100644 --- a/common/content/tabs.js +++ b/common/content/tabs.js @@ -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", diff --git a/common/modules/styles.jsm b/common/modules/styles.jsm index f5d24fdd..19dc8e41 100644 --- a/common/modules/styles.jsm +++ b/common/modules/styles.jsm @@ -572,7 +572,6 @@ var Styles = Module("Styles", { } }, { - bang: true, completer: function (context, args) { let compl = []; let sheet = args["-group"].get(args["-name"]);