diff options
| author | Pascal Getreuer <50221757+getreuer@users.noreply.github.com> | 2022-05-13 23:00:32 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-14 16:00:32 +1000 |
| commit | 68b16bba68d79c63bbd649a5be58756e937c96da (patch) | |
| tree | be0d3d672c13c080f4da58687b5b1a261f465911 /quantum/quantum.c | |
| parent | 90eef4cd153cdc1b00d973e6abb029828f656294 (diff) | |
[Core] Add Caps Word feature to core (#16588)
Co-authored-by: precondition <57645186+precondition@users.noreply.github.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'quantum/quantum.c')
| -rw-r--r-- | quantum/quantum.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index c0e801a4bb..b54b46760c 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c | |||
| @@ -307,6 +307,9 @@ bool process_record_quantum(keyrecord_t *record) { | |||
| 307 | #ifdef TERMINAL_ENABLE | 307 | #ifdef TERMINAL_ENABLE |
| 308 | process_terminal(keycode, record) && | 308 | process_terminal(keycode, record) && |
| 309 | #endif | 309 | #endif |
| 310 | #ifdef CAPS_WORD_ENABLE | ||
| 311 | process_caps_word(keycode, record) && | ||
| 312 | #endif | ||
| 310 | #ifdef SPACE_CADET_ENABLE | 313 | #ifdef SPACE_CADET_ENABLE |
| 311 | process_space_cadet(keycode, record) && | 314 | process_space_cadet(keycode, record) && |
| 312 | #endif | 315 | #endif |
