What is going on??

This commit is contained in:
Drew Whitney 2025-11-15 18:29:01 -07:00
commit 43caca9cc8
3 changed files with 3 additions and 4 deletions

View file

@ -30,5 +30,4 @@ enum CustomKeycodes {
#define COMP_ARROW LT(_SH_ARROW, COMPOSE) #define COMP_ARROW LT(_SH_ARROW, COMPOSE)
// trigger mods // trigger mods
#define TABBING_TRIGGER_MODS MOD_MASK_ALT
#define OBLITERATE_TRIGGER_MODS MOD_MASK_GUI #define OBLITERATE_TRIGGER_MODS MOD_MASK_GUI

View file

@ -150,13 +150,15 @@ bool process_record_user(uint16_t keycode, keyrecord_t* record) {
break; break;
case WIN_SWAP: // easy Alt-Tab case WIN_SWAP: // easy Alt-Tab
if (record->event.pressed) {
tap_code(KC_A); tap_code(KC_A);
if (record->event.pressed) {
// register_mods(MOD_LALT); // register_mods(MOD_LALT);
// tap_code(KC_TAB); // tap_code(KC_TAB);
} else { } else {
// unregister_mods(MOD_LALT); // unregister_mods(MOD_LALT);
} }
return false;
break; break;
case LAUNCH_NUM: // make the launch keycode work case LAUNCH_NUM: // make the launch keycode work

View file

@ -6,8 +6,6 @@ SRC += combos/combos.c
SRC += layers/layers.c SRC += layers/layers.c
SRC += taphold/taphold_options.c SRC += taphold/taphold_options.c
SRC += utils/utils.c SRC += utils/utils.c
# SRC += chordal_hold/chordal_options.c
# SRC += flow_tap/flow_tap_options.c
# VIA_ENABLE = yes # VIA_ENABLE = yes
LTO_ENABLE = yes LTO_ENABLE = yes