The play/layer key now has a quick tap term of 0

This commit is contained in:
Drew Whitney 2025-08-13 10:10:40 -06:00
commit 4c716cfb4e
2 changed files with 4 additions and 2 deletions

View file

@ -5,7 +5,8 @@ uint16_t get_quick_tap_term(uint16_t keycode, keyrecord_t* record) {
case CTL_T(KC_TAB):
case NUM_SPC:
case NAV_ENT:
case GUI_LAUNCH: // no repeat tapping when tapped and then held for these keys
case GUI_LAUNCH:
case LT(_FUNC, KC_MPLY): // no repeat tapping when tapped and then held for these keys
return 0;
break;
default:

View file

@ -5,7 +5,8 @@ uint16_t get_quick_tap_term(uint16_t keycode, keyrecord_t* record) {
case CTL_T(KC_TAB):
case NUM_SPC:
case NAV_ENT:
case GUI_LAUNCH: // no repeat tapping when tapped and then held for these keys
case GUI_LAUNCH:
case LT(_FUNC, KC_MPLY): // no repeat tapping when tapped and then held for these keys
return 0;
break;
default: