From 106c6712be9365dc07a3f893bea1d418502bb0e2 Mon Sep 17 00:00:00 2001 From: Ian Henry Date: Sun, 4 Apr 2021 21:37:02 -0700 Subject: [PATCH] add workman alphabet --- src/alphabets.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/alphabets.rs b/src/alphabets.rs index 25c1040..76e56fe 100644 --- a/src/alphabets.rs +++ b/src/alphabets.rs @@ -1,6 +1,6 @@ use std::collections::HashMap; -const ALPHABETS: [(&'static str, &'static str); 22] = [ +const ALPHABETS: [(&'static str, &'static str); 26] = [ ("numeric", "1234567890"), ("abcd", "abcd"), ("qwerty", "asdfqwerzxcvjklmiuopghtybn"), @@ -23,6 +23,10 @@ const ALPHABETS: [(&'static str, &'static str); 22] = [ ("colemak-homerow", "arstneiodh"), ("colemak-left-hand", "arstqwfpzxcv"), ("colemak-right-hand", "neioluymjhk"), + ("workman", "thsawrdqcmxzneoilfupgybvjk"), + ("workman-homerow", "thsaneo"), + ("workman-left-hand", "thsawrdqcmxz"), + ("workman-right-hand", "neoifuplk"), ]; pub struct Alphabet<'a> {