From 53da35574617d87b0282e5f325ef2611c4557352 Mon Sep 17 00:00:00 2001 From: Victor Date: Wed, 24 Apr 2024 19:50:01 -0500 Subject: [PATCH] Accidentally cleared out the combo config --- users/t4corun/config/combo_config.h | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/users/t4corun/config/combo_config.h b/users/t4corun/config/combo_config.h index 64b67a1d..db188eac 100644 --- a/users/t4corun/config/combo_config.h +++ b/users/t4corun/config/combo_config.h @@ -6,4 +6,31 @@ * */ -s \ No newline at end of file +//Clear variables we plan to use that might be set elsewhere +#undef COMBO_ONLY_FROM_LAYER +#undef EXTRA_SHORT_COMBOS + +#undef COMBO_TERM +#undef COMBO_TERM_PER_COMBO + +#undef COMBO_HOLD_TERM +#undef COMBO_MUST_HOLD_PER_COMBO + +#undef COMBO_MUST_TAP_PER_COMBO +#undef COMBO_MUST_PRESS_IN_ORDER_PER_COMBO +#undef COMBO_SHOULD_TRIGGER + + +//Set common configuration for all keyboards +#define COMBO_ONLY_FROM_LAYER 0 //this will always setup combos based off of QWERTY layout +#define EXTRA_SHORT_COMBOS + +#define COMBO_TERM 35 +#define COMBO_TERM_PER_COMBO + +#define COMBO_HOLD_TERM TAPPING_TERM +#define COMBO_MUST_HOLD_PER_COMBO + +#define COMBO_MUST_TAP_PER_COMBO +#define COMBO_MUST_PRESS_IN_ORDER_PER_COMBO +#define COMBO_SHOULD_TRIGGER \ No newline at end of file