aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/tests/hold-tap/tap-unless-interrupted
AgeCommit message (Collapse)Author
2023-12-04refactor: Remove unimportant labelsJoel Spadin
Removed "label" properties which no longer have any function. Labels are still used as layer names and as identifiers for sending behaviors between sides of a split keyboard, so those have been left alone for now.
2023-10-03refactor(behaviors): Final global-quick-tap deprecation.Andrew Rae
2023-10-03refactor(behaviors): global-quick-tap -> require-prior-idleAndrew Rae
Renaming global-quick-tap-ms to require-prior-idle.
2023-10-03refactor(behaviors): Giving global-quick-tap its own termAndrew Rae
Detaching the global-quick-tap functionality from the quick-tap term. This makes way for two improvements: 1. This functionality can be added to combos under a unified name 'global-quick-tap-ms'. 2. This allows users to set a lower term for the 'global-quick-tap' (typically ~100ms), and a higher term for the regular quick-tap (typically ~200ms) This deprecates the global-quick-tap option, however if it is set, the quick-tap-ms value will be copied to global-quick-tap-ms.
2023-04-24refactor: Replace tabs with spacesJoel Spadin
Standardized indentation to use spaces with a new pre-commit hook.
2023-04-24refactor: Add more checks to pre-commitJoel Spadin
Updated existing pre-commit hooks and added some new hooks: - Remove trailing whitespace - Ensure every non-empty file ends with a new line - Check YAML file validity - Prevent adding large files - Ensure any scripts with shebangs are executable Added a GitHub action to run pre-commit on every commit. Removed any existing actions which duplicate pre-commit. Ran pre-commit on the codebase.
2022-05-19fix(tests): Fix hex formatting.Peter Johanson
2022-05-19refactor(tests): Move remaining tests to posix 64.Peter Johanson
* Update docs and fix up a few lingering tests to consistently use native_posix_64 target.
2022-04-27feat(behaviors): Add `global-quick-tap`Andrew Rae
2022-04-03refactor(tests): Move to native_posix_64 target.Peter Johanson
* Allows removing multilib from docker images * Run properly in aarch64 host docker containers for testing on Rasberry Pi. * Small sticky-keys fix to initialize w/ correct constant for max uin32_t value.
2022-04-03fix(tests): Fix snapshots to account for formatting changes.Peter Johanson
2021-11-09feat: hold/tap flavor tap-unless-interruptedjding
Implements new hold/tap flavor, tap-unless-interrupted Adds tests Adds docs