mirror of
https://github.com/qmk/qmk_userspace.git
synced 2026-04-22 11:30:23 -04:00
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
This commit is contained in:
parent
39958c6545
commit
9a007e6b26
1 changed files with 1 additions and 1 deletions
|
|
@ -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 pipe_combo[] = {Z_L2, KC_X, COMBO_END};
|
||||||
const uint16_t PROGMEM bslh_combo[] = {SL_L1, KC_QUOT, 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(lparen_combo, KC_LPRN),
|
||||||
COMBO(rparen_combo, KC_RPRN),
|
COMBO(rparen_combo, KC_RPRN),
|
||||||
COMBO(lbrace_combo, KC_LCBR),
|
COMBO(lbrace_combo, KC_LCBR),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue