1
0
Fork 0

[Keymap] Pvinis/update for iris (#5889)

* add default functions

* some indenting

* add ctl and alt

* maybe?
This commit is contained in:
Pavlos Vinieratos 2019-05-16 18:38:28 +02:00 committed by Drashna Jaelre
parent a8af694d26
commit 1a28906a3d
5 changed files with 24 additions and 15 deletions

View file

@ -77,3 +77,13 @@ qk_tap_dance_action_t tap_dance_actions[] = {
void keyboard_post_init_user(void) {
keyboard_post_init_user_local();
}
// default functions
__attribute__ ((weak))
void keyboard_post_init_user_local(void) {}
__attribute__ ((weak))
uint32_t layer_state_set_user_local(uint32_t state) {
return state;
}