-
Notifications
You must be signed in to change notification settings - Fork 232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
请问怎么设置在五笔拼音状态下按z键可以重复输出? #396
Comments
「普通用上了」是什么意思?不知道「拼音状态」是指什么,以及为什么要求在该状态下实现这个功能。 以下是撇开这些问题的解法,以五笔 86 方案为例。 # wubi86.custom.yaml
patch:
engine/translator/@next: history_translator@history
history:
input: z
size: 1
initial_quality: 1 |
抱歉。打错了,应该是“普遍用上了”。「五笔拼音」是指RIME里的输入方案,这个状态。简单来说就是要z键重复输出。
|
|
translators,我也发现了这个问题,但还是不生效;包括加引号也试过了。@Ace-Who |
这就不知道为什么了。看看有没有错误日志—— Windows 是 |
抱歉,是我的错: # <schema_id>.custom.yaml
patch:
engine/translators/@next: history_translator@history
history:
input: z
size: 1
initial_quality: 1 |
没看明白,还是修改原来那个文件吗?然后把history那一段都退两格?但是依然不生效。本人愚钝,还请明示!@Ace-Who |
对。 |
试过了,还是无效。
|
我的设置部分,小鹤音形方案,;f触发。 xhup.schema.yaml
|
從樓上的描述看,應該已經有效。出現在拼音候選之後。 |
@uoow 确实用 |
经过测试,这个方案或许比较理想:不使用作为 reverse_lookup_translator 的 pinyin_simp 来混输拼音,而改为添加一个 pinyin 翻译器来负责混输拼音。 副作用:
注意:按 Backspace 或 Enter 键会清除历史。 # wubi_pinyin.custom.yaml
patch:
engine/segmentors:
- ascii_segmentor
- matcher
- abc_segmentor
- affix_segmentor@pinyin
- punct_segmentor
- fallback_segmentor
engine/translators/@3: script_translator@pinyin
engine/translators/@4: history_translator@history
abc_segmentor/extra_tags: [ pinyin ]
pinyin:
tag: pinyin
dictionary: pinyin_simp
initial_quality: 0.2
history:
input: z
size: 1 |
@Ace-Who 最后的这个设置好像解决问题了,试用一番。 |
「重复」即调用「历史输入」。 |
知道了,试了确实是,但没影响。已经够用,刚想将它作唯一输入法(因为发现了好多starcraft的主题,喜欢!开发者应该也是星际1的玩家?)就发现问题了,也有人提了Issue,在OneNote上还有兼容问题。那就再观望观望 |
把 history_translator 放在主翻译器前面就行了 #
patch:
engine/translators/@before 0: history_translator
history/input: z |
@xiaoqun2016 确实可以。既然翻译器次序会影响候选排序,不知道 history 的权重有什么意义。 |
@xiaoqun2016 的方法简单好用啊。好了,这次真的可以Closed。感谢两位 @Ace-Who @xiaoqun2016 |
感谢,按楼上的方法已经配置的完美了, |
这个功能在五笔里是普遍用上了,不知道RIME有没有这个选项。如:输出“五笔”后,再按一次z键,空格,则再输出”五笔“一次。
The text was updated successfully, but these errors were encountered: