mirror of
https://github.com/qmk/qmk_userspace.git
synced 2026-07-29 04:34:19 -04:00
What is going on??
This commit is contained in:
parent
dff3aedf4f
commit
43caca9cc8
3 changed files with 3 additions and 4 deletions
|
|
@ -30,5 +30,4 @@ enum CustomKeycodes {
|
|||
#define COMP_ARROW LT(_SH_ARROW, COMPOSE)
|
||||
|
||||
// trigger mods
|
||||
#define TABBING_TRIGGER_MODS MOD_MASK_ALT
|
||||
#define OBLITERATE_TRIGGER_MODS MOD_MASK_GUI
|
||||
|
|
|
|||
|
|
@ -150,13 +150,15 @@ bool process_record_user(uint16_t keycode, keyrecord_t* record) {
|
|||
break;
|
||||
|
||||
case WIN_SWAP: // easy Alt-Tab
|
||||
if (record->event.pressed) {
|
||||
tap_code(KC_A);
|
||||
|
||||
if (record->event.pressed) {
|
||||
// register_mods(MOD_LALT);
|
||||
// tap_code(KC_TAB);
|
||||
} else {
|
||||
// unregister_mods(MOD_LALT);
|
||||
}
|
||||
return false;
|
||||
break;
|
||||
|
||||
case LAUNCH_NUM: // make the launch keycode work
|
||||
|
|
|
|||
|
|
@ -6,8 +6,6 @@ SRC += combos/combos.c
|
|||
SRC += layers/layers.c
|
||||
SRC += taphold/taphold_options.c
|
||||
SRC += utils/utils.c
|
||||
# SRC += chordal_hold/chordal_options.c
|
||||
# SRC += flow_tap/flow_tap_options.c
|
||||
|
||||
# VIA_ENABLE = yes
|
||||
LTO_ENABLE = yes
|
||||
|
|
|
|||
Loading…
Reference in a new issue