summaryrefslogtreecommitdiff
path: root/docs/ja/feature_stenography.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ja/feature_stenography.md')
-rw-r--r--docs/ja/feature_stenography.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ja/feature_stenography.md b/docs/ja/feature_stenography.md
index 46698bdb3d..f8f7df11e1 100644
--- a/docs/ja/feature_stenography.md
+++ b/docs/ja/feature_stenography.md
@@ -45,8 +45,8 @@ MOUSEKEY_ENABLE = no
キーマップで Plover 用の新しいレイヤーを作成します。`keymap_steno.h` をインクルードする必要があります。例については `planck/keymaps/steno/keymap.c` を見てください。レイヤーに切り替えるためのキーとレイヤーから抜けるためのキーを作成することを忘れないでください。その場でモードを切り替えたい場合は、キーコード `QK_STENO_BOLT` および `QK_STENO_GEMINI` を使うことができます。プロトコルのうちの1つのみを使う場合は、初期化関数の中でそれをセットアップすることができます:
```c
-void matrix_init_user() {
- steno_set_mode(STENO_MODE_GEMINI); // あるいは STENO_MODE_BOLT
+void eeconfig_init_user() {
+ steno_set_mode(STENO_MODE_GEMINI); // あるいは STENO_MODE_BOLT
}
```