mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-15 03:45:29 -04:00
Trying to simplify the taphold code
- only on semicolon - removed the TR LT define and only doing TH
This commit is contained in:
parent
49f130585f
commit
052b2795a2
4 changed files with 68 additions and 10 deletions
|
@ -76,7 +76,7 @@ bool process_tap_hold_key(keyrecord_t* record, uint16_t keycode) {
|
|||
key = KC_GRV;
|
||||
altkey = KC_TILDE;
|
||||
break;
|
||||
case TR_SCLN: //tap for semicolon, hold for colon
|
||||
case TH_SCLN: //tap for semicolon, hold for colon
|
||||
key = KC_SCLN;
|
||||
altkey = KC_COLN;
|
||||
break;
|
||||
|
@ -116,7 +116,7 @@ bool process_tap_hold_key(keyrecord_t* record, uint16_t keycode) {
|
|||
case TR_EQL:
|
||||
case TR_MINS:
|
||||
case TR_GRV:
|
||||
case TR_SCLN:
|
||||
case TH_SCLN:
|
||||
case TR_QUOT:
|
||||
tap_code16(altkey);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue