diff --git a/users/t4corun/features/combo.c b/users/t4corun/features/combo.c index fdacd707..b8d5df35 100644 --- a/users/t4corun/features/combo.c +++ b/users/t4corun/features/combo.c @@ -29,8 +29,7 @@ bool get_combo_must_tap(uint16_t index, combo_t *combo) { case KEY_TAB: case KEY_ENT: case KEY_DEL: - case KEY_BSPC: - case KEY_BWRD: + case KEY_BSPC: return true; default: diff --git a/users/t4corun/features/combo.h b/users/t4corun/features/combo.h index 1248aeb2..164a17f5 100644 --- a/users/t4corun/features/combo.h +++ b/users/t4corun/features/combo.h @@ -21,7 +21,6 @@ enum combos { // right hand combos KEY_DEL, KEY_BSPC, - KEY_BWRD, LYR_CONFIG, COMBO_LENGTH @@ -46,7 +45,6 @@ const uint16_t PROGMEM lyr_fun_combo[] = { NUM, TR_LSFT, COMBO_END }; // right hand combos const uint16_t PROGMEM key_del_combo[] = { KC_M, TR_DOT, COMBO_END }; const uint16_t PROGMEM key_bspc_combo[] = { KC_M, TR_COMM, COMBO_END }; -const uint16_t PROGMEM key_bwrd_combo[] = { TR_COMM, TR_DOT, COMBO_END }; const uint16_t PROGMEM lyr_cfg_combo[] = { KC_SPC, NAV, COMBO_END }; @@ -70,7 +68,6 @@ combo_t key_combos[COMBO_LENGTH] = { // right hand combos [KEY_DEL] = COMBO(key_del_combo, KC_DEL), [KEY_BSPC] = COMBO(key_bspc_combo, KC_BSPC), - [KEY_BWRD] = COMBO(key_bwrd_combo, BACKWRD), [LYR_CONFIG] = COMBO(lyr_cfg_combo, CONFIG) };