Skip to content

Commit

Permalink
Hacking combos into userspace
Browse files Browse the repository at this point in the history
  • Loading branch information
evantravers committed Jun 7, 2024
1 parent 53ab0e4 commit e5fcba8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions users/evantravers/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#define PREVENT_STUCK_MODIFIERS
#define FORCE_NKRO
#define RGBLIGHT_SLEEP
#define COMBO_SHOULD_TRIGGER

#define FORCE_NKRO

Expand Down
2 changes: 1 addition & 1 deletion users/evantravers/evantravers.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ tap_dance_action_t tap_dance_actions[] = {
[TD_SPCRET] = ACTION_TAP_DANCE_DOUBLE(KC_SPC, KC_ENT)
};

#ifdef COMBOS_ENABLE
#if defined(COMBO_ENABLE)
const uint16_t PROGMEM apos_combo[] = {RALT_T(KC_L), RGUI_T(KC_SCLN), COMBO_END};
const uint16_t PROGMEM hyper_combo[] = {LGUI_T(KC_A), RGUI_T(KC_SCLN), COMBO_END};
const uint16_t PROGMEM esc_combo[] = {KC_Q, KC_W, COMBO_END};
Expand Down
2 changes: 2 additions & 0 deletions users/evantravers/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@ COMMAND_ENABLE = no # Commands for debug and configuration
MACROS_ENABLED = no
CAPS_WORD_ENABLE = yes
COMBO_ENABLE = yes

INTROSPECTION_KEYMAP_C = evantravers.c

0 comments on commit e5fcba8

Please sign in to comment.