Skip to content

Commit

Permalink
[Keyboard] Fix keycode collision in craftwalk keymap (#15055)
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored Nov 4, 2021
1 parent e0793ea commit ce89962
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions keyboards/craftwalk/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ enum layer_names {
_ADJUST
};

#define KC_NUM MO(_NUM)
#define KC_ADJ MO(_ADJUST)
#define MO_NUM MO(_NUM)
#define MO_ADJ MO(_ADJUST)

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/* Base */
[_BASE] = LAYOUT(
KC_Q, KC_W, KC_E,
KC_LCTL, KC_A, KC_S, KC_D,
KC_LSFT, KC_ADJ, KC_WH_U, KC_WH_D, KC_F, KC_NUM, KC_SPC
KC_LSFT, MO_ADJ, KC_WH_U, KC_WH_D, KC_F, MO_NUM, KC_SPC
),
/* Number */
[_NUM] = LAYOUT(
Expand Down

0 comments on commit ce89962

Please sign in to comment.