diff --git a/zero-pinyin.el b/zero-pinyin.el index 22f74a00e654bd8bcadf9193cd4b3ba3e4add76f..7b656f1b69220b826553bf5ad99bd0bab1285c5c 100644 --- a/zero-pinyin.el +++ b/zero-pinyin.el @@ -90,6 +90,7 @@ "return t if char ch can start a preedit sequence." (and (>= ch ?a) (<= ch ?z) + (not (= ch ?i)) (not (= ch ?u)) (not (= ch ?v)))) @@ -100,6 +101,7 @@ (should (zero-pinyin-can-start-sequence ?z)) (should-not (zero-pinyin-can-start-sequence ?1)) (should-not (zero-pinyin-can-start-sequence ?.)) + (should-not (zero-pinyin-can-start-sequence ?i)) (should-not (zero-pinyin-can-start-sequence ?u)) (should-not (zero-pinyin-can-start-sequence ?v)))