aboutsummaryrefslogtreecommitdiffstats
path: root/quantum/quantum.h
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2020-02-05 02:49:10 +0000
committerGitHub <noreply@github.com>2020-02-04 18:49:10 -0800
commit393937b43fe37a9faceb3a40e5f6fcc604659fb0 (patch)
tree16fc3d9226a68205021d7db2ce6530b38f6868e7 /quantum/quantum.h
parentefe8bd8e9218f67a0845ccfa3eef7b074aebf7dc (diff)
downloadfirmware-393937b43fe37a9faceb3a40e5f6fcc604659fb0.tar.gz
firmware-393937b43fe37a9faceb3a40e5f6fcc604659fb0.tar.bz2
firmware-393937b43fe37a9faceb3a40e5f6fcc604659fb0.zip
Relocate grave keycode processing (#8082)
* Relocate grave keycode processing * Tidy up code * Refactor grave -> grave_esc
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r--quantum/quantum.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h
index 3b9eeaa6d..fbd5e9079 100644
--- a/quantum/quantum.h
+++ b/quantum/quantum.h
@@ -138,6 +138,10 @@ extern layer_state_t layer_state;
# include "process_magic.h"
#endif
+#ifdef GRAVE_ESC_ENABLE
+# include "process_grave_esc.h"
+#endif
+
#if defined(RGBLIGHT_ENABLE) || defined(RGB_MATRIX_ENABLE)
# include "process_rgb.h"
#endif