Skip to content

Commit

Permalink
[Docs] Update feature_combo.md of Japanese document (qmk#10671)
Browse files Browse the repository at this point in the history
  • Loading branch information
shelaf authored Oct 17, 2020
1 parent f871f7a commit 39c473a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/ja/feature_combo.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# コンボ

<!---
original document: 0.8.94:docs/feature_combo.md
git diff 0.8.94 HEAD -- docs/feature_combo.md | cat
original document: 0.10.36:docs/feature_combo.md
git diff 0.10.36 HEAD -- docs/feature_combo.md | cat
-->

コンボ機能は、同時押し方式でのカスタムアクション追加機能です。同時に複数のキーを押して、異なる効果を生み出すことができます。例えば、タッピング時間内で `A``S` を押すと、代わりに `ESC` が押されます。もっと複雑なタスクを実行させることもできます。
Expand Down Expand Up @@ -60,7 +60,7 @@ combo_t key_combos[COMBO_COUNT] = {
[XV_PASTE] = COMBO_ACTION(paste_combo),
};

void process_combo_event(uint8_t combo_index, bool pressed) {
void process_combo_event(uint16_t combo_index, bool pressed) {
switch(combo_index) {
case ZC_COPY:
if (pressed) {
Expand Down

0 comments on commit 39c473a

Please sign in to comment.