move layers to the header

This commit is contained in:
Charlotte 🦝 Delenk 2022-07-24 20:56:18 +01:00
parent 6cbb01a745
commit ae3e5e0557
2 changed files with 2 additions and 2 deletions

View file

@ -36,8 +36,6 @@ static void tap_on_layer(uint16_t key, uint8_t layer) {
unregister_on_layer(key, layer);
}
enum layers { _L1, _L2, _L3, _L4, _L5, _L6, _L7, _L8, _L9, KP1, KP2, KP3, STN, FN };
#define LSHCTL S(KC_LCTL)
#define LSHGUI S(KC_LGUI)
#define LSHALT S(KC_LALT)

View file

@ -318,3 +318,5 @@ struct decoded_key {
uint8_t layer;
uint8_t flags;
};
enum layers { _L1, _L2, _L3, _L4, _L5, _L6, _L7, _L8, _L9, KP1, KP2, KP3, STN, FN };