Trying Callum after my Swoop got stuck in game mode

- reshuffling everything to somewhat match his keymap
- removed a bunch of combos
This commit is contained in:
Victor 2024-05-05 20:27:25 -05:00
parent e6fae5e3b1
commit 39ca5f2f73
Failed to generate hash of commit
11 changed files with 48 additions and 85 deletions

View file

@ -9,12 +9,8 @@ bool get_combo_must_tap(uint16_t index, combo_t *combo) {
case MOUSE_BUTTON4:
case MOUSE_BUTTON5:
case MOUSE_DRGTOG:
#endif //MOUSEKEY_ENABLEdf
case KEY_ESC:
case KEY_ENT:
case KEY_TAB:
return true;
#endif //MOUSEKEY_ENABLEdf
default:
return false;
@ -30,20 +26,6 @@ bool combo_should_trigger(uint16_t combo_index, combo_t *combo, uint16_t keycode
switch (combo_index) {
case KEY_ENT:
if ( get_highest_layer(layer_state) == _SYMBOL ) {
return false;
}
break;
case KEY_ESC:
case KEY_TAB:
if ( get_highest_layer(layer_state) == _NAVIGATION ||
get_highest_layer(layer_state) == _SYMBOL ) {
return false;
}
break;
case MOUSE_BUTTON1:
case MOUSE_BUTTON2:
case MOUSE_BUTTON3: