Status: New Owner: ---- Labels: Type-Defect Priority-Medium
New issue 922 by [email protected]: 自然码码表源文件有问题 http://code.google.com/p/ibus/issues/detail?id=922 ### The maxmium length of a key. MAX_KEY_LENGTH = 4 自然码分两种,一种单辅码,一种双辅码。用声母加韵母两个双拼编码作主码,外加 一个或两个辅码,这就是自然码。 ibus 中的自然码应该是单辅码的,所以码表源文件中的 MAX_KEY_LENGTH 应该设为 3。目前的默认值是4,这会在使用自然码过程中带来无法连续输入的问题。 例如想要输入‘不行’二字,正常情况下击键序列应该是(下划线‘_’表示空格): buaxyx_ 现在的情况下击键序列是(下划线‘_’表示空格): bua_xyx_ 修改 MAX_KEY_LENGTH = 3 可以解决上述问题。 -- You received this message because you are subscribed to the Google Groups "ibus-devel" group. iBus project web page: http://code.google.com/p/ibus/ iBus dev group: http://groups.google.com/group/ibus-devel?hl=en
