diff options
author | James Young <xxiinophobia@yahoo.com> | 2020-02-29 12:00:00 -0800 |
---|---|---|
committer | James Young <xxiinophobia@yahoo.com> | 2020-02-29 11:59:30 -0800 |
commit | 26eef35f07698d23aafae90e1c230b52e100a334 (patch) | |
tree | eb8e43fc58ca55788e6e89430af0db55ea79e324 /keyboards/planck/keymaps/hiea/keymap.c | |
parent | 85041ff05bf0e5f4ff4535caf6e638491a5614c8 (diff) |
2020 February 29 Breaking Changes Update (#8064)
Diffstat (limited to 'keyboards/planck/keymaps/hiea/keymap.c')
-rw-r--r-- | keyboards/planck/keymaps/hiea/keymap.c | 27 |
1 files changed, 10 insertions, 17 deletions
diff --git a/keyboards/planck/keymaps/hiea/keymap.c b/keyboards/planck/keymaps/hiea/keymap.c index c09fd41f20..eed4954096 100644 --- a/keyboards/planck/keymaps/hiea/keymap.c +++ b/keyboards/planck/keymaps/hiea/keymap.c @@ -66,17 +66,10 @@ // sudo CPATH=<keymap.c directory>/common make ... -#include "config.h" -#pragma message "You may need to add LAYOUT_planck_grid to your keymap layers - see default for an example" -#include "planck.h" -#include "action_layer.h" +#include QMK_KEYBOARD_H #ifdef STENO_ENABLE #include "keymap_steno.h" #endif -#ifdef AUDIO_ENABLE -#include "audio.h" -#endif -#include "eeconfig.h" extern keymap_config_t keymap_config; @@ -166,7 +159,7 @@ enum planck_keycodes { #define S_TAB S (KC_TAB) #define S_UP S (KC_UP) -#include "tapdance.h" +#include "common/tapdance.h" // keycodes #define ___x___ KC_TRNS @@ -223,35 +216,35 @@ enum planck_keycodes { const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { #include "hiea.h" -#include "steno_layout.h" +#include "common/steno_layout.h" // ...................................................... Number / Function Keys -#include "number_fkey_layout.h" +#include "common/number_fkey_layout.h" // ......................................................... Symbol / Navigation -#include "symbol_guifn_layout.h" +#include "common/symbol_guifn_layout.h" // ............................................................... Toggle Layers #ifdef CENTER_TT -#include "toggle_layout.h" +#include "common/toggle_layout.h" #endif // ......................................................... Short Cuts / Adjust -#include "chord_layout.h" +#include "common/chord_layout.h" }; // ...................................................................... Sounds -#include "sounds.h" +#include "common/sounds.h" // ........................................................... User Keycode Trap -#include "keycode_functions.h" +#include "common/keycode_functions.h" #define BASE_1 1 #define BASE_2 2 @@ -425,4 +418,4 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) return true; } -#include "init.h" +#include "common/init.h" |