1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-22 14:05:46 +01:00

Allow <Tab> completion of ;hint modes

This commit is contained in:
Kris Maglione
2008-12-03 21:06:26 -05:00
parent f3d9a3f0d9
commit 287dfb424e
5 changed files with 57 additions and 32 deletions

View File

@@ -45,7 +45,7 @@ function Option(names, description, type, defaultValue, extraInfo) //{{{
this.description = description || "";
// "", 0 are valid default values
this.defaultValue = (defaultValue === undefined) ? null : defaultValue;
this.defaultValue = (defaultValue == null) ? null : defaultValue;
this.setter = extraInfo.setter || null;
this.getter = extraInfo.getter || null;
@@ -73,7 +73,7 @@ function Option(names, description, type, defaultValue, extraInfo) //{{{
}
Option.prototype = {
get globalvalue() options.store.get(this.name),
set globalvalue(val) { options.store.set(this.name, val) },
set globalvalue(val) options.store.set(this.name, val),
parseValues: function (value)
{