-
Notifications
You must be signed in to change notification settings - Fork 0
/
kuaima.schema.yaml
129 lines (114 loc) · 2.45 KB
/
kuaima.schema.yaml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# Rime schema
# encoding: utf-8
schema:
schema_id: kuaima
name: 王林快码
version: "0.24"
author:
- 王林
description: |
原创小字根
dependencies:
- pinyin
- easy_en
- emoji
switches:
- name: ascii_mode
reset: 0
states: [ 中文, 西文 ]
- name: full_shape
states: [ 半角, 全角 ]
engine:
processors:
- ascii_composer
- recognizer
- key_binder
- speller
- punctuator
- selector
- navigator
- express_editor
segmentors:
- ascii_segmentor
- matcher
- abc_segmentor
- punct_segmentor
- fallback_segmentor
translators:
- punct_translator
- table_translator
- reverse_lookup_translator
- reverse_lookup_translator@pinyin_lookup
- reverse_lookup_translator@english
- reverse_lookup_translator@emoji
filters:
- uniquifier
speller:
alphabet: ;zyxwvutsrqponmlkjihgfedcba
initials: abcdefghijklmnopqrstvwxyz
delimiter: "'"
max_code_length: 4
auto_clear: max_length
auto_select: true #顶字上屏
auto_select_pattern: ^[a-z;]{4}$ #自动上屏规则
auto_select_unique_candidate: true #无重码自动上屏
translator:
dictionary: kuaima.extended
prism: kuaima
enable_charset_filter: false
enable_sentence: false
enable_encoder: true
encode_commit_history: true
enable_completion: true
max_phrase_length: 2
user_dict: kuaimauser
enable_user_dict: true
db_class: tabledb
initial_quality: 1
comment_format: #提示码自定义
- "xform/~/ /" #去掉编码提示前的~号
disable_user_dict_for_patterns:
- "^[/viu;].*$"
- "^[a-z;]{1,2}$" #2码及以下不使用自动调频、不自动造词
reverse_lookup:
extra_tags:
- pinyin_lookup
- english
- emoji
pinyin_lookup:
tag: pinyin_lookup
dictionary: pinyin
prefix: "i"
tips: "〔拼〕"
preedit_format:
- xform/^i//
- xform/([nl])v/$1ü/
- xform/([nl])ue/$1üe/
- xform/([jqxy])v/$1u/
english:
tag: english
dictionary: easy_en
prefix: "u"
tips: "〔En〕"
enable_completion: true
preedit_format:
- xform/^u//
emoji:
tag: emoji
dictionary: emoji
prefix: ";"
tips: "〔emoji〕"
enable_completion: true
preedit_format:
- xform/^;//
punctuator:
import_preset: symbols
key_binder:
import_preset: default
recognizer:
import_preset: default
patterns:
punct: '^/([0-9]0?|[A-Za-z]+)$'
pinyin_lookup: "^i[a-z]+'?$"
emoji: "^;[a-z]*'?$"
english: "^u[a-z]*'?$"