mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 10:08:00 +01:00
add :set validation and completion for 'eventignore' and 'suggestengines'
This commit is contained in:
@@ -189,7 +189,6 @@ liberator.Buffer = function () //{{{
|
||||
"Show the destination of the link under the cursor in the status bar",
|
||||
"number", 1,
|
||||
{
|
||||
validator: function (value) value >= 0 && value <= 2,
|
||||
completer: function (filter)
|
||||
{
|
||||
return [
|
||||
@@ -197,7 +196,8 @@ liberator.Buffer = function () //{{{
|
||||
["1", "Show the link in the status line"],
|
||||
["2", "Show the link in the command line"]
|
||||
];
|
||||
}
|
||||
},
|
||||
validator: function (value) value >= 0 && value <= 2
|
||||
});
|
||||
|
||||
liberator.options.add(["usermode", "um"],
|
||||
|
||||
Reference in New Issue
Block a user