mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 13:27:58 +01:00
added working hinttimeout option
This commit is contained in:
@@ -516,7 +516,8 @@ vimperator.Options = function() //{{{
|
||||
this.add(new vimperator.Option(["hinttimeout", "hto"], "number",
|
||||
{
|
||||
short_help: "Automatically follow non unique numerical hint after {arg} ms",
|
||||
default_value: 500,
|
||||
help: "Set to 0 (the default) to only follow numeric hints after pressing <Return> or when the hint is unique.",
|
||||
default_value: 0,
|
||||
validator: function(value) { return value >= 0; }
|
||||
}
|
||||
));
|
||||
|
||||
Reference in New Issue
Block a user