aboutsummaryrefslogtreecommitdiff
path: root/src/shared/settings
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-01-13 05:34:03 +0000
committerGitHub <noreply@github.com>2018-01-13 05:34:03 +0000
commit4d4a959162da0a4f1eb16c3ce94e83da0465f865 (patch)
tree9a245cbffb30c21b3015b62a4f766f1a544f9bd6 /src/shared/settings
parentf5dfdb0bd7ab850c77cae523928c876fe5e002fa (diff)
parent03bb124cce7acf3a245baca1c109e5136979162e (diff)
Merge pull request #306 from ueokande/custom-hint-keys
support custom chars as hintchars
Diffstat (limited to 'src/shared/settings')
-rw-r--r--src/shared/settings/properties.js15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/shared/settings/properties.js b/src/shared/settings/properties.js
index ff8039b..f695c58 100644
--- a/src/shared/settings/properties.js
+++ b/src/shared/settings/properties.js
@@ -1,15 +1,14 @@
+// describe types of a propety as:
+// mystr: 'string',
+// mynum: 'number',
+// mybool: 'boolean',
const types = {
- // TODO describe property types here
- // mystr: 'string',
- // mynum: 'number',
- // mybool: 'boolean',
+ hintchars: 'string',
};
+// describe default values of a property
const defaults = {
- // TODO describe property defaults values
- // mystr: 'hello',
- // mynum: 123,
- // mybool: true,
+ hintchars: 'abcdefghijklmnopqrstuvwxyz',
};
export { types, defaults };