From bd8c576322a71dccc212868f95ab47a1197a87ac Mon Sep 17 00:00:00 2001 From: Dietrich Daroch Date: Sat, 25 Jun 2016 16:34:43 -0400 Subject: [PATCH] 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. --- qutebrowser/config/configdata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/config/configdata.py b/qutebrowser/config/configdata.py index 5feec1e92..33c79c2ce 100644 --- a/qutebrowser/config/configdata.py +++ b/qutebrowser/config/configdata.py @@ -888,7 +888,7 @@ def data(readonly=False): ('chars', SettingValue(typ.UniqueCharString(minlen=2, completions=[ ('asdfghjkl', "Home row"), - ('dhtnaoeu', "Home row (Dvorak)"), + ('aoeuidnths', "Home row (Dvorak)"), ('abcdefghijklmnopqrstuvwxyz', "All letters"), ]), 'asdfghjkl'), "Chars used for hint strings."),