1
0
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:
Martin Stubenschrott
2007-11-09 00:19:51 +00:00
parent 79c17fe9bd
commit 59d6412637
2 changed files with 25 additions and 8 deletions

View File

@@ -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; }
}
));