diff options
author | Jonas Gessner <JonasGessner@users.noreply.github.com> | 2021-07-13 19:13:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-13 10:13:51 -0700 |
commit | 52cfc9259b58a3a11a244fbe35c49c7dd1a9cae0 (patch) | |
tree | 71cbd4b8e2c622a33cbb4d080a08e035901f30c8 /quantum/quantum.h | |
parent | 1ae4d52013c9f38bdc5c208ff8bbfdf173e1dddd (diff) |
[Feature] Key Overrides (#11422)
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r-- | quantum/quantum.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index 66ba96fde8..673796e6b1 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h @@ -118,6 +118,10 @@ extern layer_state_t layer_state; # include "process_unicodemap.h" #endif +#ifdef KEY_OVERRIDE_ENABLE +# include "process_key_override.h" +#endif + #ifdef TAP_DANCE_ENABLE # include "process_tap_dance.h" #endif |