File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ void action_exec(keyevent_t event);
51
51
52
52
/* action for key */
53
53
action_t action_for_key (uint8_t layer , keypos_t key );
54
- action_t action_for_key_default (uint8_t layer , keypos_t key );
55
54
56
55
/* macro */
57
56
const macro_t * action_get_macro (keyrecord_t * record , uint8_t id , uint8_t opt );
Original file line number Diff line number Diff line change @@ -27,13 +27,8 @@ static action_t keycode_to_action(uint8_t keycode);
27
27
28
28
29
29
/* converts key to action */
30
- __attribute__((__weak__ ))
31
30
action_t action_for_key (uint8_t layer , keypos_t key )
32
31
{
33
- return action_for_key_default (layer , key );
34
- }
35
-
36
- action_t action_for_key_default (uint8_t layer , keypos_t key )
37
32
uint8_t keycode = keymap_key_to_keycode (layer , key );
38
33
switch (keycode ) {
39
34
case KC_FN0 ... KC_FN31 :
You can’t perform that action at this time.
0 commit comments