mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 09:17:59 +01:00
rename Command's bangAllowed property to bang
This commit is contained in:
@@ -368,7 +368,7 @@ liberator.Options = function () //{{{
|
||||
},
|
||||
{
|
||||
argCount: "0",
|
||||
bangAllowed: true,
|
||||
bang: true,
|
||||
});
|
||||
|
||||
liberator.commands.add(["setl[ocal]"],
|
||||
@@ -378,7 +378,7 @@ liberator.Options = function () //{{{
|
||||
liberator.commands.get("set").execute(args, special, count, { scope: liberator.options.OPTION_SCOPE_LOCAL });
|
||||
},
|
||||
{
|
||||
bangAllowed: true,
|
||||
bang: true,
|
||||
completer: function (filter, special, count)
|
||||
{
|
||||
return liberator.commands.get("set").completer(filter, special, count, { scope: liberator.options.OPTION_SCOPE_LOCAL });
|
||||
@@ -393,7 +393,7 @@ liberator.Options = function () //{{{
|
||||
liberator.commands.get("set").execute(args, special, count, { scope: liberator.options.OPTION_SCOPE_GLOBAL });
|
||||
},
|
||||
{
|
||||
bangAllowed: true,
|
||||
bang: true,
|
||||
completer: function (filter, special, count)
|
||||
{
|
||||
return liberator.commands.get("set").completer(filter, special, count, { scope: liberator.options.OPTION_SCOPE_GLOBAL });
|
||||
@@ -706,7 +706,7 @@ liberator.Options = function () //{{{
|
||||
}
|
||||
},
|
||||
{
|
||||
bangAllowed: true,
|
||||
bang: true,
|
||||
completer: function (filter, special, count, modifiers)
|
||||
{
|
||||
var optionCompletions = [];
|
||||
@@ -847,7 +847,7 @@ liberator.Options = function () //{{{
|
||||
},
|
||||
{
|
||||
argCount: "+",
|
||||
bangAllowed: true
|
||||
bang: true
|
||||
});
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////}}}
|
||||
|
||||
Reference in New Issue
Block a user