diff options
author | Peter Johanson <[email protected]> | 2021-11-29 04:26:22 +0000 |
---|---|---|
committer | Pete Johanson <[email protected]> | 2022-01-30 22:47:34 -0500 |
commit | 70bb7c93349344e0990f12282abfcd8d00ba7208 (patch) | |
tree | eeb47ee39ec4a887ef6d1edf809b88709e6269bb /app/CMakeLists.txt | |
parent | ac3c3170bd70f5186544495cb5ced7bfbf3f6764 (diff) | |
download | zmk-70bb7c93349344e0990f12282abfcd8d00ba7208.tar.gz zmk-70bb7c93349344e0990f12282abfcd8d00ba7208.zip |
feat(behaviors): `&key_repeat` behavior + tests.
* Add new `&key_repeat` behavior that captures and re-sends
the most recently triggered keycode.
Closes: #853
Diffstat (limited to 'app/CMakeLists.txt')
-rw-r--r-- | app/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt index 970c6c204a..c5b74aa536 100644 --- a/app/CMakeLists.txt +++ b/app/CMakeLists.txt @@ -48,6 +48,7 @@ if ((NOT CONFIG_ZMK_SPLIT) OR CONFIG_ZMK_SPLIT_BLE_ROLE_CENTRAL) target_sources(app PRIVATE src/behaviors/behavior_hold_tap.c) target_sources(app PRIVATE src/behaviors/behavior_sticky_key.c) target_sources(app PRIVATE src/behaviors/behavior_caps_word.c) + target_sources(app PRIVATE src/behaviors/behavior_key_repeat.c) target_sources(app PRIVATE src/behaviors/behavior_momentary_layer.c) target_sources(app PRIVATE src/behaviors/behavior_mod_morph.c) target_sources(app PRIVATE src/behaviors/behavior_outputs.c) |