diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-05-04 15:10:57 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-05-04 16:40:38 +0900 |
commit | a6b8c8a1c2fe955343a420c814978822803d6933 (patch) | |
tree | acacfdafc1ad3ca8e2d4eff3f97dad4df27455f5 /src | |
parent | 36ba30de1d0d97209db6df4083beed3993e61195 (diff) |
Remove unused description in background script
Diffstat (limited to 'src')
-rw-r--r-- | src/shared/settings/Properties.ts | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/shared/settings/Properties.ts b/src/shared/settings/Properties.ts index 38f1d3b..529ecfc 100644 --- a/src/shared/settings/Properties.ts +++ b/src/shared/settings/Properties.ts @@ -22,7 +22,6 @@ type PropertyName = "hintchars" | "smoothscroll" | "complete" | "colorscheme"; type PropertyDef = { name: PropertyName; - description: string; defaultValue: string | number | boolean; type: "string" | "number" | "boolean"; }; @@ -30,25 +29,21 @@ type PropertyDef = { const defs: PropertyDef[] = [ { name: "hintchars", - description: "hint characters on follow mode", defaultValue: "abcdefghijklmnopqrstuvwxyz", type: "string", }, { name: "smoothscroll", - description: "smooth scroll", defaultValue: false, type: "boolean", }, { name: "complete", - description: "which are completed at the open page", defaultValue: "sbh", type: "string", }, { name: "colorscheme", - description: "color scheme of the console", defaultValue: ColorScheme.System, type: "string", }, |