Adding one more tap hold

- holding astericks now gives question mark
This commit is contained in:
Victor 2024-05-07 23:57:02 -05:00
parent aaa2269240
commit be2edd05cc
Failed to generate hash of commit
4 changed files with 12 additions and 2 deletions

View file

@ -76,7 +76,10 @@ bool process_tap_hold_key(keyrecord_t* record, uint16_t keycode) {
break;
case TR_AT:
single_tap(TAPHOLD_AT, isHold);
break;
break;
case TR_ASTR:
single_tap(TAPHOLD_ASTR, isHold);
break;
case TR_MINS:
single_tap(TAPHOLD_MINS, isHold);
break;
@ -145,6 +148,9 @@ bool process_tap_hold_key(keyrecord_t* record, uint16_t keycode) {
case TR_AT:
single_tap(TAPHOLD_AT, isHold);
break;
case TR_ASTR:
single_tap(TAPHOLD_ASTR, isHold);
break;
// simulates auto-shift
case TR_MINS: