Cleaning up documentation

- Was thinking about ways to simplify my design but I forgot
layer taps can't take ANSI Shifted Keycodes so I still need to
define custom keycodes to make the defines unique
This commit is contained in:
Victor 2024-05-08 22:46:33 -05:00
parent 7faa790d5a
commit fcb238ab2f
Failed to generate hash of commit
3 changed files with 2 additions and 5 deletions

View file

@ -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);

View file

@ -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

View file

@ -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)