最近发现一个开源输入法,可以自己定制所有的输入法选项。支持繁体,下载尝试一下。rime输入法的五笔打字异常强大,喜欢五笔的朋友可以尝试一下。
下载地址
rime官网
简介
参考维基百科
中州韵输入法引擎(英语:Rime Input Method Engine,又称Rime 输入法)是由佛振编写的开源中文输入法,当前项目网站、源代码均托管在GitHub。基于同一个核心架构,该输入法分为三个官方发行版:Linux 发行版中州韵(ibus-rime)、Windows发行版小狼毫(Weasel)、macOS 发行版鼠须管(Squirrel)。另有数个第三方发行版:Linux 发行版fcitx-rime、Windows发行版PRIME、macOS 发行版XIME、Android发行版同文输入法(Trime)、iOS发行版iRime。
中州韵可以自定义各种参数设置,备份及合并用户词典,借助在线存储服务同步用户数据。但是于其他一些主流输入法不同的是,中州韵输入法引擎没有设计图形设置界面,对其进行自定义设置时需要通过修改用户文件夹或程序文件夹里的 YAML 配置文件来达成。此外其默认了数十种输入方案
当前大多数拼音输入法对繁体中文的支持不佳,甚至直接逐字转换,常会出现乱用异体字,不考虑简繁一对多的情况,但是中州韵较好地解决了此类问题。且中州韵跨平台、小巧快捷的同时又内置有多种输入方案。在非商业性的软件介绍网站“小众软件”的评选中,中州韵位列第八,成为唯一上榜的开源输入法。
秉承了开源软件的传统,该输入法平台可定制性极强,且因开放源代码的特性受到注重隐私保护的用户的青睐。[10]但与此同时,该输入法平台当前尚未提供详尽的图形配置界面(仅在Windows发行版小狼毫中有简易图形配置界面),帮助文档对于用户的计算机编程水平也有一定要求,因此对于普通用户而言其配置难度较高不易上手。
作者佛振表示,将继续完善API、文档和辅助工具,以便让更多开源社群的开发人员参与进来
配置使用
在windows下下载后会产生九个文件,点击用户文件夹可以修改输入法的样式,在weasel.custom.yaml下修改输入法的样式,比如习惯搜狗输入法的候选字横行显示,在path下面添加
1 2 3 4 5 6 7 8 9
| customization: distribution_code_name: Weasel distribution_version: 0.13.0 generator: "Weasel::UIStyleSettings" modified_time: "Mon Jun 10 23:51:18 2019" rime_version: 1.4.0 patch: style/color_scheme: appsored style/horizontal: true
|
style/color_scheme: 可以修改主题样式,查看官方文档可以自由定义。
我的样式在github上寻找到的。
下面是我的完整代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| customization: distribution_code_name: Weasel distribution_version: 0.13.0 generator: "Weasel::UIStyleSettings" modified_time: "Mon Jun 10 23:51:18 2019" rime_version: 1.4.0 patch: style/color_scheme: appsored style/horizontal: true style/inline_preedit: true style/layout/border_width: 1 style/layout/candidate_spacing: 30 style/layout/margin_x: 15 style/layout/margin_y: 10 style/layout/round_corner: 0 style/layout/hilite_padding: 15 style/font_point: 13 "preset_color_schemes/win10": # 在配色方案列表裏加入標識爲 starcraft 的新方案 author: "Astrian Zheng" back_color: 0x000000 border_height: 6 border_width: 6 candidate_format: "%c. %@ " candidate_text_color: 0x2824C8 comment_text_color: 0xFFFFFF corner_radius: 6 font_point: 16 hilited_candidate_back_color: 0x000000 hilited_candidate_label_color: 0xFFFFFF hilited_candidate_text_color: 0xFFFFFF hilited_text_color: 0xFFFFFF horizontal: true label_color: 0x2824C8 label_font_point: 12 name: "爱范儿黑" text_color: 0x2824C8 preset_color_schemes/appsored: author: "Astrian Zheng" back_color: 0x2824C8 border_height: 6 border_width: 6 candidate_format: "%c. %@ " candidate_text_color: 0xC5C3F2 comment_text_color: 0xFFFFFF corner_radius: 6 font_point: 16 hilited_candidate_back_color: 0x2824C8 hilited_candidate_label_color: 0xFFFFFF hilited_candidate_text_color: 0xFFFFFF hilited_text_color: 0xFFFFFF horizontal: true label_color: 0xC5C3F2 label_font_point: 12 name: "AppSo 红" text_color: 0xC5C3F2
|
还有喜欢其他样式的windows下自带样式选择,也可以自己编写,喜欢折腾的可以尝试一下。
拓展
rime 支持自定义词库,后续功能我会继续研究。
Gitalking ...