If on, vimb automatically follows the last remaining hint on the page.
If off hints are fired only if enter is pressed.
.TP
-.B hint-number-same-length (bool)
-If on, all hint numbers will have the same length, so no hints will be
+.B hint-keys-same-length (bool)
+If on, all hint labels will have the same length, so no hints will be
ambiguous.
.TP
.B hint-timeout (int)
MAXIMUM_HINTS,
GET_CHAR(c, "hint-keys"),
GET_BOOL(c, "hint-follow-last") ? "true" : "false",
- GET_BOOL(c, "hint-number-same-length") ? "true" : "false"
+ GET_BOOL(c, "hint-keys-same-length") ? "true" : "false"
);
call_hints_function(c, "init", jsargs, FALSE);
setting_add(c, "hint-timeout", TYPE_INTEGER, &i, NULL, 0, NULL);
setting_add(c, "hint-keys", TYPE_CHAR, &"0123456789", NULL, 0, NULL);
setting_add(c, "hint-follow-last", TYPE_BOOLEAN, &on, NULL, 0, NULL);
- setting_add(c, "hint-number-same-length", TYPE_BOOLEAN, &off, NULL, 0, NULL);
+ setting_add(c, "hint-keys-same-length", TYPE_BOOLEAN, &off, NULL, 0, NULL);
setting_add(c, "html5-database", TYPE_BOOLEAN, &on, webkit, 0, "enable-html5-database");
setting_add(c, "html5-local-storage", TYPE_BOOLEAN, &on, webkit, 0, "enable-html5-local-storage");
setting_add(c, "hyperlink-auditing", TYPE_BOOLEAN, &off, webkit, 0, "enable-hyperlink-auditing");