diff options
Diffstat (limited to 'layouts/community/ergodox')
-rw-r--r-- | layouts/community/ergodox/berfarah/keymap.c | 8 | ||||
-rw-r--r-- | layouts/community/ergodox/qwerty_code_friendly/keymap.c | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/layouts/community/ergodox/berfarah/keymap.c b/layouts/community/ergodox/berfarah/keymap.c index a0a107785..164d026ef 100644 --- a/layouts/community/ergodox/berfarah/keymap.c +++ b/layouts/community/ergodox/berfarah/keymap.c @@ -49,7 +49,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { */ // If it accepts an argument (i.e, is a function), it doesn't need KC_. // Otherwise, it needs KC_* - [QWERTY] = KEYMAP( // layer 0 : default + [QWERTY] = LAYOUT_ergodox( // layer 0 : default // left hand KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_LBRC, @@ -92,7 +92,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { * | | | | | | | | * `--------------------' `--------------------' */ - [NUMS] = KEYMAP( + [NUMS] = LAYOUT_ergodox( // left hand KC_TRNS, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_TRNS, LGUI(KC_GRV),KC_GRV, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS, @@ -135,7 +135,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { * | | | | | | | | * `--------------------' `--------------------' */ - [MOVE] = KEYMAP( + [MOVE] = LAYOUT_ergodox( // left hand KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,VIM_W, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, @@ -160,7 +160,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { /* Keymap: AFK Layer * All keys wake */ - [AFK] = KEYMAP( + [AFK] = LAYOUT_ergodox( // left hand BF_WAKE,BF_WAKE,BF_WAKE,BF_WAKE,BF_WAKE,BF_WAKE,BF_WAKE, BF_WAKE,BF_WAKE,BF_WAKE,BF_WAKE,BF_WAKE,BF_WAKE,BF_WAKE, diff --git a/layouts/community/ergodox/qwerty_code_friendly/keymap.c b/layouts/community/ergodox/qwerty_code_friendly/keymap.c index 5c3c1ff81..f882d0e00 100644 --- a/layouts/community/ergodox/qwerty_code_friendly/keymap.c +++ b/layouts/community/ergodox/qwerty_code_friendly/keymap.c @@ -54,7 +54,7 @@ #endif #ifdef CFQ_USE_80_KEYS -# define LAYOUT_ergodox_76_or_80 KEYMAP_80 +# define LAYOUT_ergodox_76_or_80 LAYOUT_ergodox_80 # define K80(a) CFQ_USER_K80_##a #else # define LAYOUT_ergodox_76_or_80( \ @@ -281,8 +281,8 @@ enum custom_keycodes { /* avoid ifdef's in keymap */ # define DYN_REC_START1 KC_TRNS # define DYN_REC_START2 KC_TRNS -# define DYN_REC_PLAY1 KC_TRNS -# define DYN_REC_PLAY2 KC_TRNS +# define DYN_MACRO_PLAY1 KC_TRNS +# define DYN_MACRO_PLAY2 KC_TRNS # define DYN_REC_STOP KC_TRNS #endif |