summaryrefslogtreecommitdiffstats
path: root/quantum/action.c
Commit message (Collapse)AuthorAgeFilesLines
* [Feature] Send a dummy keycode to neutralize flashing modifiers in retro tap ↵precondition2023-07-081-0/+7
| | | | and key overrides (#20992)
* Get rid of `USB_LED_SCROLL_LOCK` (#21405)Ryan2023-07-021-6/+6
|
* [Core] Add Repeat Key ("repeat last key") as a core feature. (#19700)Pascal Getreuer2023-05-201-2/+2
| | | | | Co-authored-by: casuanoob <96005765+casuanoob@users.noreply.github.com> Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
* Add a user callback for pre process record (#20584)Albert Y2023-05-131-4/+1
|
* [Bug] Fix compilation error introduced by #20669 (#20849)Drashna Jaelre2023-05-111-1/+1
|
* Fix Mod-Tap combo regression (#20669)Pete Sevander2023-05-101-2/+6
| | | | | | | | | | | | | | | | | | | * 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>
* Add swap hands toggle functions (#20381)Albert Y2023-04-091-0/+12
|
* [Bug] Fix compilation issue with Swap Hands and Encoder Map (#20348)Drashna Jaelre2023-04-051-0/+4
|
* Fix OSMs getting stuck (#20034)Kasimir Pihlasviita2023-04-031-19/+12
|
* Make IGNORE_MOD_TAP_INTERRUPT the default behaviour for mod-taps (#20211)precondition2023-04-031-1/+1
|
* Remove use of keymap.h (#20004)Joel Challis2023-03-271-1/+1
|
* Fix functions when `NO_ACTION_TAPPING` is defined (#11528)Drashna Jaelre2023-02-191-12/+32
|
* Add swap hands status function (#19831)Albert Y2023-02-141-0/+4
| | | | Co-authored-by: Drashna Jaelre <drashna@live.com>
* Fixup `develop` compiles. (#19828)Nick Brassel2023-02-131-11/+11
|
* Tidy up use of keycode range helpers (#19813)Joel Challis2023-02-121-5/+5
|
* Tidy up use of keycode range helpers (#19756)Joel Challis2023-02-101-9/+9
|
* Fix functions with empty params (#19647)Ryan2023-01-201-1/+1
| | | | | * Fix functions with empty params * Found a bunch more
* Allow mod-tap hold action on one shot layer (#19214)David Kosorin2023-01-021-1/+6
|
* Introduce IS_EVENT instead of !IS_NOEVENT (#19366)Stefan Kerkmann2022-12-171-3/+3
|
* [Core] guard action related debug messages (#19348)Stefan Kerkmann2022-12-151-65/+42
|
* Remove IGNORE_MOD_TAP_INTERRUPT_PER_KEY in favour of ↵precondition2022-12-131-5/+5
| | | | HOLD_ON_OTHER_KEY_PRESS_PER_KEY (#15741)
* Programmable Button API refactor and improve docs (#18641)Ryan2022-10-151-1/+0
|
* Small un/register_code() cleanups (#18544)Ryan2022-09-301-30/+20
|
* Handle mouse keys more consistently (#18513)Drashna Jaelre2022-09-291-49/+51
|
* Enabling Pointing Device support in register code functions (#18363)Drashna Jaelre2022-09-261-0/+8
|
* Move Oneshot mod callbacks to after mods are set (#18101)Drashna Jaelre2022-09-261-3/+3
|
* [Bug] Add key event check to `is_tap_record` and remove `is_tap_key` (#18063)Stefan Kerkmann2022-08-151-9/+4
|
* Use TAP_HOLD_CAPS_DELAY for KC_LOCKING_CAPS_LOCK (#17099)precondition2022-05-301-1/+1
|
* Fix one-shot locked modifiers (#16114)Denis Savran2022-04-181-5/+2
| | | | | | | | | | | * Fix state updates of one-shot locked modifiers Activating additional one-shot locked modifiers removed previously enabled locked modifiers from the state. `get_oneshot_locked_mods` returned zero when two or more one-shot locked modifiers were enabled and then one was disabled. * Do not delete one-shot locked modifiers on a one-shot layer toggle Non-locked one-shot modifiers are not removed so this behavior adds inconsistency. Also the one-shot locked modifiers state was reset without unregistering any modifiers.
* Fix oneshot toggle logic (#16630)Drashna Jaelre2022-03-141-5/+5
| | | | | | | * Fix oneshot toggle logic * Enable oneshots by default * Decrement eeconfig magic number due to eeconfig changes
* Fixup builds. (#16596)Nick Brassel2022-03-091-6/+7
|
* Add support for encoder mapping. (#13286)Nick Brassel2022-03-091-12/+53
|
* Format code according to conventions (#16421)QMK Bot2022-02-211-53/+38
|
* Format code according to conventions (#16322)QMK Bot2022-02-121-14/+36
|
* Rip out old macro and action_function system (#16025)Ryan2022-01-241-25/+1
| | | | | | | * Rip out old macro and action_function system * Update quantum/action_util.c Co-authored-by: Joel Challis <git@zvecr.com>
* Make (un)register code functions weak (#15285)Drashna Jaelre2021-12-271-8/+8
|
* Add Retro Shift (Auto Shift for Tap Hold via Retro Tapping) and Custom Auto ↵Isaac Elenbaas2021-11-251-3/+16
| | | | | | | Shifts (#11059) * Add Retro Shift and Custom Auto Shifts * Fix compilation errors with no RETRO_SHIFT value
* Basic keycode overhaul (#14726)Ryan2021-11-031-26/+26
|
* Manually format develop (#15003)Joel Challis2021-11-011-38/+45
|
* Fix issues with Oneshot disabling (#14934)Drashna Jaelre2021-11-011-64/+102
|
* Add Support for USB programmable buttons (#12950)Thomas Weißschuh2021-09-151-0/+5
|
* Apply `TAP_CODE_DELAY` to Tap Dance key sequences (#14412)Drashna Jaelre2021-09-131-6/+0
| | | | | * Add support to tap dances * Move default tap code defines to header file
* Revert 14083 && 14144 (#14150)Joel Challis2021-08-251-28/+0
| | | | | | | | | * Revert "Short term bodge for firmware size bloat (#14144)" This reverts commit a8d65473461c337fb1e168d907bfb8c3ac8fdbd0. * Revert "Tidy up quantum.c now some of tmk_core has been merged (#14083)" This reverts commit c4dbf4bf0118dd785802861beb247433b5b7411d.
* Tidy up quantum.c now some of tmk_core has been merged (#14083)Joel Challis2021-08-241-0/+28
|
* Migrate platform independent code from tmk_core -> quantum (#13673)Joel Challis2021-08-181-0/+1126
* Migrate action|keyboard|keycode|eeconfig from tmk_core -> quantum