From fcb238ab2fef1734396d9895f7749938db628768 Mon Sep 17 00:00:00 2001 From: Victor Date: Wed, 8 May 2024 22:46:33 -0500 Subject: [PATCH] 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 --- users/t4corun/features/taphold.c | 1 - users/t4corun/features/taphold.h | 4 +--- users/t4corun/t4corun.h | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) 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)