Add some completions for hints -> chars.

This commit is contained in:
Florian Bruhin 2015-10-25 21:22:19 +01:00
parent bb5e5137cd
commit 9b3987febb

View File

@ -781,7 +781,11 @@ def data(readonly=False):
"Mode to use for hints."),
('chars',
SettingValue(typ.String(minlen=2), 'asdfghjkl'),
SettingValue(typ.String(minlen=2, completions=[
('asdfghjkl', "Home row"),
('dhtnaoeu', "Home row (Dvorak)"),
('abcdefghijklmnopqrstuvwxyz', "All letters"),
]), 'asdfghjkl'),
"Chars used for hint strings."),
('min-chars',