mirror of
https://github.com/qmk/qmk_userspace.git
synced 2026-07-30 13:14:18 -04:00
The play/layer key now has a quick tap term of 0
This commit is contained in:
parent
d6c81bf492
commit
4c716cfb4e
2 changed files with 4 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue