removed ctrl backspace combo

This commit is contained in:
Victor 2024-04-17 00:44:20 -05:00
parent 3279aeb5f5
commit f053b1e041
Failed to generate hash of commit
2 changed files with 1 additions and 5 deletions

View file

@ -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:

View file

@ -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)
};