Skip to content

Commit a03a73e

Browse files
committed
discuss en registration
1 parent e725d95 commit a03a73e

File tree

2 files changed

+30
-4
lines changed

2 files changed

+30
-4
lines changed

docs/faq.md

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,40 @@
55
* 快捷键切换,默认 `Ctrl+Shift_L`,可在 `全局配置` -> `快捷键` -> `切换启用/禁用输入法` 设置。
66

77
### 我想使用 CapsLock 切换中英文
8-
`打开键盘设置` -> `所有输入法`,开启 `使用大写锁定键切换 “ABC” 输入法`
9-
10-
由于 `CapsLock` 按键的特殊性,您无法在不切换大小写的情况下使用 `CapsLock` 在小企鹅内部切换中英文。
8+
可以,但先要使用 [Karabiner-Elements](https://github.com/pqrs-org/Karabiner-Elements)`CapsLock` 映射为其他组合键:
9+
*`Complex Modifications``Add your own rule`,(以 `Ctrl+Shift_R` 为例)填入
10+
```json
11+
{
12+
"description": "change CapsLock to Ctrl+Shift_R",
13+
"manipulators": [{
14+
"from": {
15+
"key_code": "caps_lock",
16+
"modifiers": {
17+
"mandatory": [],
18+
"optional": []
19+
}
20+
},
21+
"to": [{
22+
"key_code": "right_shift",
23+
"modifiers": ["control"]
24+
}],
25+
"type": "basic"
26+
}]
27+
}
28+
```
29+
然后根据您的需求,
30+
* 若要在小企鹅内部切换中英文,在 `全局配置` -> `快捷键` -> `切换启用/禁用输入法` 中录制 `CapsLock`(注意此时会显示上一步设置的快捷键,而非 `CapsLock`);
31+
* 若要切换小企鹅和系统的 `ABC`,需要再借助 [Input Source Pro](https://github.com/runjuu/InputSourcePro),在 `快捷键` 中将 `ABC` 和小企鹅加入同一个切换组,并录制 `CapsLock`
1132

1233
## 如何在多个输入法间切换
1334
* 菜单切换;
1435
* 快捷键切换,默认按住 `Ctrl` 并连续按下 `Shift_L`
1536

37+
## 为什么小企鹅注册为英语输入法
38+
* 小企鹅尽可能实现完整的输入功能,包括适配用户删掉了系统 `ABC` 的特殊情况。
39+
* 只有英语输入法才可以在密码输入框中使用。如果注册为其他语言的输入法,系统将在密码输入框自动切换为 `ABC`,但输入完毕后不会自动切换回来,给用户造成麻烦。
40+
* 小企鹅作为输入法框架,支持多种语言的输入法(包括 Hallelujah 英语智能输入),但没有必要对所有支持的语言注册一次。
41+
1642
## 如何切换繁简
1743

1844
### 拼音/码表

docs/theme/css.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
</div>
163163
```
164164
* 在水平排列下,候选词间的分隔线隐藏,候选词和翻页按钮之间的垂直分隔线显示。
165-
* 在垂直排列下,候选词间的分隔线若宽度为 0,则相邻的 `fcitx-candidate-inner` 相距 1 个外边距;若宽度大于 0,则相距 2 个外边距 + 宽度。`fcitx-divider-side` 隐藏,且的长度等于外边距,使 `fcitx-divider-middle` 的长度等于 `fcitx-candidate-inner`
165+
* 在垂直排列下,候选词间的分隔线若宽度为 0,则相邻的 `fcitx-candidate-inner` 相距 1 个外边距;若宽度大于 0,则相距 2 个外边距 + 宽度。`fcitx-divider-side` 隐藏,且长度等于外边距,使 `fcitx-divider-middle` 的长度等于 `fcitx-candidate-inner`
166166
* 在卷轴模式下,没有翻页按钮,分隔线和面板同色,用来填充候选词间的空隙(因为卷轴的宽度是固定的,不像水平排列下宽度由候选词控制而没有空隙)。
167167

168168
## 翻页按钮结构

0 commit comments

Comments
 (0)