Skip to content

Commit

Permalink
Try T/N reduced tapping term instead
Browse files Browse the repository at this point in the history
  • Loading branch information
halcyonCorsair committed Mar 3, 2022
1 parent c2eba9a commit f111491
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions keyboards/splitkb/kyria/keymaps/halcyoncorsair/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,6 @@ bool get_hold_on_other_key_press(uint16_t keycode, keyrecord_t *record) {
case QK_LAYER_TAP ... QK_LAYER_TAP_MAX:
// Immediately select the hold action when another key is pressed.
return true;
case HOME_T:
case HOME_N:
return true;
default:
// Do not select the hold action when another key is pressed.
return false;
Expand All @@ -198,6 +195,9 @@ uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
case HOME_O:
case QHOME_S:
return TAPPING_TERM + 30;
case HOME_T:
case HOME_N:
return TAPPING_TERM - 20;
// case SYM_ENT:
// // Very low tapping term to make sure I don't hit Enter accidentally.
// return TAPPING_TERM - 85;
Expand Down

0 comments on commit f111491

Please sign in to comment.