Skip to content

Commit

Permalink
really fix keycodes
Browse files Browse the repository at this point in the history
  • Loading branch information
raph-rc committed Jul 13, 2024
1 parent 5ad5e43 commit 79ccf4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions keyboards/zsa/voyager/keymaps/raphrc/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,13 +176,13 @@ void leader_end_user(void) {
} else if (leader_sequence_one_key(KC_A)){
caps_word_toggle();
} else if (leader_sequence_one_key(KC_H)){
SS_TAP(X_LEFT);
SEND_STRING(SS_TAP(X_LEFT));
} else if (leader_sequence_one_key(KC_J)){
SS_TAP(X_DOWN);
SEND_STRING(SS_TAP(X_DOWN));
} else if (leader_sequence_one_key(KC_K)){
SS_TAP(X_UP);
SEND_STRING(SS_TAP(X_UP));
} else if (leader_sequence_one_key(KC_L)){
SS_TAP(X_RIGHT);
SEND_STRING(SS_TAP(X_RIGHT));
}
}

Expand Down

0 comments on commit 79ccf4e

Please sign in to comment.