cleanup removal of combos

This commit is contained in:
thecount 2025-04-11 15:20:30 +02:00
parent 7eeb98301d
commit 2e26674456

View file

@ -152,17 +152,13 @@ enum combo_events {
AS_AE,
OP_OE,
UI_UE,
LSEMI_APOSTROPHE,
QW_DESKTOPLEFT,
ER_DESKTOPORIGHT
LSEMI_APOSTROPHE
};
const uint16_t PROGMEM combo_ae[] = {KC_A, KC_S, COMBO_END};
const uint16_t PROGMEM combo_oe[] = {KC_O, KC_P, COMBO_END};
const uint16_t PROGMEM combo_ue[] = {KC_U, KC_I, COMBO_END};
const uint16_t PROGMEM combo_apostrophe[] = {KC_L, KC_SCLN, COMBO_END};
const uint16_t PROGMEM combo_desktopleft[] = {KC_Q, KC_W, COMBO_END};
const uint16_t PROGMEM combo_desktopright[] = {KC_E, KC_R, COMBO_END};
combo_t key_combos[] = {
[AS_AE] = COMBO_ACTION(combo_ae),