diff --git a/users/t4corun/features/taphold.c b/users/t4corun/features/taphold.c index fc1b2ff5..06e23e49 100644 --- a/users/t4corun/features/taphold.c +++ b/users/t4corun/features/taphold.c @@ -120,7 +120,6 @@ bool process_tap_hold_key(keyrecord_t* record, uint16_t keycode) { insert_brackets(TAPHOLD_SQUO, WAIT_DELAY); break; - // double tap case TR_EQL: double_tap(TAPHOLD_EQL, WAIT_DELAY); diff --git a/users/t4corun/features/taphold.h b/users/t4corun/features/taphold.h index bc077c00..0cc095f2 100644 --- a/users/t4corun/features/taphold.h +++ b/users/t4corun/features/taphold.h @@ -37,6 +37,4 @@ bool process_tap_hold_key(keyrecord_t* record, uint16_t keycode); #define TAPHOLD_MINS KC_MINS, KC_UNDS #define TAPHOLD_GRV KC_GRV, KC_TILD #define TAPHOLD_SCLN KC_SCLN, KC_COLN -#define TAPHOLD_QUOT KC_QUOT, KC_DQUO - - +#define TAPHOLD_QUOT KC_QUOT, KC_DQUO \ No newline at end of file diff --git a/users/t4corun/t4corun.h b/users/t4corun/t4corun.h index cfe47ac3..d0281546 100644 --- a/users/t4corun/t4corun.h +++ b/users/t4corun/t4corun.h @@ -80,7 +80,7 @@ enum keycodes { // tap hoLd. These will be intercepted and overridden. The LT will be ignored -#define TR_LCBR LT(_DEFAULT_LAYER_1, TH_LCBR) // bracket behvavior +#define TR_LCBR LT(_DEFAULT_LAYER_1, TH_LCBR) // bracket behavior #define TR_LABK LT(_DEFAULT_LAYER_1, TH_LABK) #define TR_LBRC LT(_DEFAULT_LAYER_1, TH_LBRC) #define TR_LPRN LT(_DEFAULT_LAYER_1, TH_LPRN)