forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Docs] Japanese translation of docs/feature_key_lock.md (qmk#8948)
* add feature_key_lock.md translation * update based on comment * set link as lang dir
- Loading branch information
1 parent
ec0189d
commit 5cd99ec
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# キーロック | ||
|
||
<!--- | ||
original document: 0.8.134:docs/feature_key_lock.md | ||
git diff 0.8.134 HEAD -- docs/feature_key_lock.md | cat | ||
--> | ||
|
||
特定のキーを長時間押すことが必要になる場合があります。キーロックは次に押すキーを押したままにします。もう一度押すと、リリースされます。 | ||
|
||
いくつかの文を全て大文字で入力する必要があるとしましょう。`KC_LOCK` を押し、次にシフトを押します。これで、シフトは次にタップするまで押していると見なされます。キーロックを Caps Lock と考えることができますが、さらに強力です。 | ||
|
||
## 使用法 | ||
|
||
最初に `rules.mk` で `KEY_LOCK_ENABLE = yes` を設定することでキーロックを有効にします。次に、キーマップでキーを選択し、それをキーコード `KC_LOCK` に割り当てます。 | ||
|
||
## キーコード | ||
|
||
| キーコード | 説明 | | ||
|---------|--------------------------------------------------------------| | ||
| `KC_LOCK` | キーが再び押されるまで次のキーを押したままにします。 | | ||
|
||
## 注意事項 | ||
|
||
キーロックは、標準アクションキーと[ワンショットモディファイア](ja/one_shot_keys.md)キー (例えば、Shift を `OSM(KC_LSFT)` と定義した場合)のみを押し続けることができます。 | ||
これは、QMK の特殊機能(ワンショットモディファイアを除く)、または `KC_LPRN` のような shift を押されたキーのバージョンは含みません。[基本的なキーコード](ja/keycodes_basic.md)リストにある場合、押したままにすることができます。 | ||
|
||
レイヤーの切り替えは、キーロックを解除しません。 |