Fix Dvorak hint chars
- Use the whole home row - Produce easier chords - 2-key chords alternate hands first (f[aoeui][dhtns]) - This is indeed a poor patch for easier chords as it should work on every home-row, but there are not that much homerows around.
This commit is contained in:
parent
d8a01d84b3
commit
bd8c576322
@ -888,7 +888,7 @@ def data(readonly=False):
|
|||||||
('chars',
|
('chars',
|
||||||
SettingValue(typ.UniqueCharString(minlen=2, completions=[
|
SettingValue(typ.UniqueCharString(minlen=2, completions=[
|
||||||
('asdfghjkl', "Home row"),
|
('asdfghjkl', "Home row"),
|
||||||
('dhtnaoeu', "Home row (Dvorak)"),
|
('aoeuidnths', "Home row (Dvorak)"),
|
||||||
('abcdefghijklmnopqrstuvwxyz', "All letters"),
|
('abcdefghijklmnopqrstuvwxyz', "All letters"),
|
||||||
]), 'asdfghjkl'),
|
]), 'asdfghjkl'),
|
||||||
"Chars used for hint strings."),
|
"Chars used for hint strings."),
|
||||||
|
Loading…
Reference in New Issue
Block a user