From 9a007e6b26a6e9775ed88e27e96340e471a170e7 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 31 Mar 2026 17:53:47 +0000 Subject: [PATCH] Fix combo array to use auto-sized declaration Remove explicit COMBO_COUNT sizing from key_combos array since the COMBO_COUNT define was removed. Modern QMK auto-detects combo count via keymap introspection. https://claude.ai/code/session_01G7xpKdeQFVBvr4iCzxrcTU --- users/timfee/timfee.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/timfee/timfee.c b/users/timfee/timfee.c index 19863955..3aff75e8 100644 --- a/users/timfee/timfee.c +++ b/users/timfee/timfee.c @@ -13,7 +13,7 @@ const uint16_t PROGMEM rbkt_combo[] = {KC_N, KC_M, COMBO_END}; const uint16_t PROGMEM pipe_combo[] = {Z_L2, KC_X, COMBO_END}; const uint16_t PROGMEM bslh_combo[] = {SL_L1, KC_QUOT, COMBO_END}; -combo_t key_combos[COMBO_COUNT] = { +combo_t key_combos[] = { COMBO(lparen_combo, KC_LPRN), COMBO(rparen_combo, KC_RPRN), COMBO(lbrace_combo, KC_LCBR),