summaryrefslogtreecommitdiff
path: root/quantum/process_keycode
AgeCommit message (Collapse)Author
2023-12-24Align location of tap dance keycode (#22742)Joel Challis
2023-11-12Remove requirement for `keymap_steno.h` include in keymaps (#22423)Ryan
* Remove requirement for `keymap_steno.h` include in keymaps * Add back keymap_steno.h with a note for the time being
2023-11-11fix: make clicky delay silent (#21866)Less/Rikki
2023-09-25Improve test invocation, fix Retro Shift bugs, and add Auto+Retro Shift test ↵Isaac Elenbaas
cases (#15889)
2023-09-25Fix combo_ref_from_layer respect different default layer [#21780] (#21781)Ben Cooper
2023-08-27Unicode, Unicodemap and UCIS refactor (#21659)Ryan
2023-08-01Fix Dynamic Macro Compilation for avr-gcc 5.4.0 + Linux (#21653)James Young
Co-authored-by: Joel Challis <git@zvecr.com>
2023-07-26Reduce needless precision in audio note frequency calculation (#21496)Nebuleon
2023-07-26On-each-release tap dance function (#20255)leep-frog
Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
2023-07-21haptic: naming cleanups (#21551)Ryan
2023-07-16quantum: remove direct `quantum.h` includes (#21507)Ryan
2023-07-12process_combo: restore wait.h header (#21514)フィルターペーパー
Required for `wait_ms()` function
2023-07-11process_keycode: remove direct `quantum.h` includes (#21486)Ryan
2023-07-08[Feature] Send a dummy keycode to neutralize flashing modifiers in retro tap ↵precondition
and key overrides (#20992)
2023-07-08[Enhancement] More info on `apply_autocorrect` (#21056)Pablo Martínez
Co-authored-by: Drashna Jaelre <drashna@live.com>
2023-07-07Adds a way to separate tab from AUTO_SHIFT_SPECIAL. (#20996)Chris Salch
2023-06-04[Enhancement] Decouple autocorrect logic (#21116)Pablo Martínez
2023-06-02[Core] Move dynamic macro "stop recording" logic to a function (#21108)Ariane Emory
2023-05-20[Core] Add Repeat Key ("repeat last key") as a core feature. (#19700)Pascal Getreuer
Co-authored-by: casuanoob <96005765+casuanoob@users.noreply.github.com> Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
2023-05-15Keymap introspection for combos. (#19670)Nick Brassel
2023-05-10Fix Mod-Tap combo regression (#20669)Pete Sevander
* Add keyevent for combo keyrecord * Fix formatting * Update quantum/process_keycode/process_combo.c Co-authored-by: Sergey Vlasov <sigprof@gmail.com> * Add combo unit-tests and hot-fix process_record_tap_hint ...as this function tries to lookup the combo keys passed in. This will be refactored in a later pr. --------- Co-authored-by: Sergey Vlasov <sigprof@gmail.com> Co-authored-by: Stefan Kerkmann <karlk90@pm.me>
2023-04-10Prevent Tri-Layer keys from stopping caps words (#20398)Ricardo Hermida Ruiz
2023-04-04[Core] Caps Word "Invert on shift" option: pressing Shift inverts the ↵Pascal Getreuer
shift state. (#20092) Co-authored-by: Nick Brassel <nick@tzarc.org>
2023-04-03[Core] Refactor `keyevent_t` for 1ms timing resolution (#15847)Stefan Kerkmann
2023-04-03Make IGNORE_MOD_TAP_INTERRUPT the default behaviour for mod-taps (#20211)precondition
2023-04-03Add direction to dynamic_macro_record_start_user (#19689)Johannes H. Jensen
2023-03-27Remove use of keymap.h (#20004)Joel Challis
2023-02-23Align magic keycodes (#19877)Joel Challis
2023-02-19Fix functions when `NO_ACTION_TAPPING` is defined (#11528)Drashna Jaelre
2023-02-18Align sequencer keycodes (#19875)Joel Challis
2023-02-15[Bug] Fix compiliation issue for Key Overrides (#19856)Drashna Jaelre
2023-02-13Add combo hook to allow per layer combo reference layers. (#16699)Eric.a Gebhart
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
2023-02-13Refactor Leader key feature (#19632)Ryan
Co-authored-by: Drashna Jaelre <drashna@live.com>
2023-02-12[Core] Tri Layer Keys (#19795)Drashna Jaelre
Co-authored-by: wilba <wilba@wilba.tech> Co-authored-by: Pablo Martínez <58857054+elpekenin@users.noreply.github.com> Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
2023-02-10Tidy up use of keycode range helpers (#19756)Joel Challis
2023-01-30Normalise Swap Hands keycodes (#19720)Ryan
2023-01-20Fix functions with empty params (#19647)Ryan
* Fix functions with empty params * Found a bunch more
2023-01-01Align definition of unicode_map (#19452)Joel Challis
2022-12-14Tap Dance: remove `qk_` prefix (#19313)Ryan
2022-12-15[Test] Reset timer for every unit test and provide timestamps for log ↵Stefan Kerkmann
messages (#17028)
2022-12-14Leader: remove `qk_` prefix (#19304)Ryan
2022-12-14UCIS: remove `qk_` prefix (#19302)Ryan
2022-12-13Remove IGNORE_MOD_TAP_INTERRUPT_PER_KEY in favour of ↵precondition
HOLD_ON_OTHER_KEY_PRESS_PER_KEY (#15741)
2022-11-07Align haptic feedback keycode names (#18964)Joel Challis
2022-11-07Normalise MIDI keycodes (#18972)Ryan
* `MI_ON`, `MI_OFF`, `MI_TOG` -> `MI_TOGG` * `MI_CH*`, `MI_CHU` -> `MI_CHNU`, `MI_CHD` -> `MI_CHND` * `MI_VEL_*` -> `MI_VL*`, `MI_VELU`, `MI_VELD` * `MI_TRNS_*` -> `MI_TR*`, `MI_TRNSU` -> `MI_TRSU`, `MI_TRNSD` -> `MI_TRSD` * `MI_OCT_*` -> `MI_OC*`, `MI_OCTU`, `MI_OCTD` * Misc controls * Note keycodes * Add legacy keycodes * Regenerate keycodes * Typo
2022-11-06Fix keycode parameter extraction to match the new DD keycodes (#18977)Sergey Vlasov
* Add macros to extract parameters from keycode values Implement both encoding and decoding for keycodes like TO(layer) or LM(layer, mod) in one place, so that the decoding won't get out of sync with the encoding. While at it, fix some macros for creating keycode values that did not apply the appropriate masks to parameters (and therefore could allow the result to be out of range if a wrong parameter was passed). * keymap_common: Use extraction macros for keycodes * pointing_device_auto_mouse: Use extraction macros for keycodes Fixes #18970. * process_autocorrect: Use extraction macros for keycodes * process_caps_word: Use extraction macros for keycodes (Also fix a minor bug - SH_TG was not handled properly) * process_leader: Use extraction macros for keycodes (Technically the code is not 100% correct, because it always assumes that the LT() or MT() action was a tap, but it's a separate issue that already existed before the keycode changes.) * process_unicode: Use extraction macros for keycodes * process_unicodemap: Use extraction macros for keycodes
2022-11-06Reworked backlight keycodes. (#18961)Nick Brassel
Co-authored-by: Ryan <fauxpark@gmail.com>
2022-11-05Align audio keycode names (#18962)Joel Challis
* Align audio keycode names * Update docs * Update quantum
2022-11-05Align dynamic tapping term keycode names (#18963)Joel Challis
* Align dynamic tapping term keycode names * regen header
2022-11-06Remove thermal printer. (#18959)Nick Brassel