core: Add hook_process_action()

This commit is contained in:
tmk 2019-05-29 14:08:03 +09:00
parent c25cdae5f2
commit 2b83b9a8f9
4 changed files with 25 additions and 13 deletions

View file

@ -58,6 +58,8 @@ void action_exec(keyevent_t event)
void process_action(keyrecord_t *record)
{
if (hook_process_action(record)) return;
keyevent_t event = record->event;
#ifndef NO_ACTION_TAPPING
uint8_t tap_count = record->tap.count;