From 5eeaff6c1d3d4b96dfabbeeb040880fcdc269c97 Mon Sep 17 00:00:00 2001 From: handa Date: Fri, 20 Oct 2006 06:54:12 +0000 Subject: [PATCH] Fix for double vowels and double consonants. --- vi-telex.mim | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/vi-telex.mim b/vi-telex.mim index b5004f5..541896c 100644 --- a/vi-telex.mim +++ b/vi-telex.mim @@ -98,14 +98,17 @@ (consonant (shift after-vc)) (d-bar (shift after-vc)) (double (shift after-vc)) - (vowel (shift init)) + (vowel) (diacritical (shift init)) (backspace)) ;; The state shifted to when a vowel and consonant are typed. The ;; vowel is the first character of the preedit buffer. (after-vc - (diacritical (shift init))) + (diacritical (shift init)) + (consonant) + (d-var) + (double)) (escape "a" -- 1.7.10.4