diff options
author | precondition <57645186+precondition@users.noreply.github.com> | 2021-11-25 20:06:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-26 07:06:50 +1100 |
commit | 4bac5f53d864a77a6f0fa8a2a046ed7748824ecc (patch) | |
tree | 75153ff862bdb0644e9d7622c1b80517e10a30f8 /quantum/quantum_keycodes.h | |
parent | 5e9c29da0df045b03ada9278c34f37b22349a6f7 (diff) | |
download | qmk_firmware-4bac5f53d864a77a6f0fa8a2a046ed7748824ecc.tar.gz qmk_firmware-4bac5f53d864a77a6f0fa8a2a046ed7748824ecc.zip |
New feature: `DYNAMIC_TAPPING_TERM_ENABLE` (#11036)
* New feature: `DYNAMIC_TAPPING_TERM_ENABLE`
3 new quantum keys to configure the tapping term on the fly.
* Replace sprintf call in tapping_term_report by get_u16_str
* Replace tab with 4 spaces
Diffstat (limited to 'quantum/quantum_keycodes.h')
-rw-r--r-- | quantum/quantum_keycodes.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h index d013a6a16..e4d0167aa 100644 --- a/quantum/quantum_keycodes.h +++ b/quantum/quantum_keycodes.h | |||
@@ -524,6 +524,11 @@ enum quantum_keycodes { | |||
524 | // Additional magic key | 524 | // Additional magic key |
525 | MAGIC_TOGGLE_GUI, | 525 | MAGIC_TOGGLE_GUI, |
526 | 526 | ||
527 | // Adjust tapping term on the fly | ||
528 | DT_PRNT, | ||
529 | DT_UP, | ||
530 | DT_DOWN, | ||
531 | |||
527 | // Programmable Button | 532 | // Programmable Button |
528 | PROGRAMMABLE_BUTTON_1, | 533 | PROGRAMMABLE_BUTTON_1, |
529 | PROGRAMMABLE_BUTTON_2, | 534 | PROGRAMMABLE_BUTTON_2, |