1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 16:52:25 +01:00

rename Command's bangAllowed property to bang

This commit is contained in:
Doug Kearns
2008-10-04 16:48:32 +00:00
parent 7cd9f28279
commit 2ebb57fe93
11 changed files with 48 additions and 48 deletions

View File

@@ -275,7 +275,7 @@ liberator.Bookmarks = function () //{{{
liberator.bookmarks.list(args.arguments.join(" "), args["-tags"] || [], special);
},
{
bangAllowed: true,
bang: true,
completer: function (filter) [0, liberator.bookmarks.get(filter)],
options: [[["-tags", "-T"], liberator.commands.OPTION_LIST]]
});
@@ -602,7 +602,7 @@ liberator.History = function () //{{{
}
},
{
bangAllowed: true,
bang: true,
completer: function (filter)
{
var sh = getWebNavigation().sessionHistory;
@@ -649,7 +649,7 @@ liberator.History = function () //{{{
}
},
{
bangAllowed: true,
bang: true,
completer: function (filter)
{
var sh = getWebNavigation().sessionHistory;
@@ -670,7 +670,7 @@ liberator.History = function () //{{{
"Show recently visited URLs",
function (args, special) { liberator.history.list(args, special); },
{
bangAllowed: true,
bang: true,
completer: function (filter) [0, liberator.history.get(filter)]
});
@@ -853,7 +853,7 @@ liberator.QuickMarks = function () //{{{
else
liberator.quickmarks.remove(args);
},
{ bangAllowed: true });
{ bang: true });
liberator.commands.add(["qma[rk]"],
"Mark a URL with a letter for quick access",