diff options
| author | Pete Sevander | 2023-05-10 17:59:52 +0200 |
|---|---|---|
| committer | GitHub | 2023-05-10 17:59:52 +0200 |
| commit | 8a332e6f0105d2db9239e3c3f997bae754522804 (patch) | |
| tree | fb8d79bf1d0bbfde46384227992d7bfd70942b96 /tests/combo/config.h | |
| parent | 6f2a1e4e17fcba9183c6f4f126383d99d9d714f8 (diff) | |
Fix Mod-Tap combo regression (#20669)
* 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>
Diffstat (limited to 'tests/combo/config.h')
| -rw-r--r-- | tests/combo/config.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/combo/config.h b/tests/combo/config.h new file mode 100644 index 0000000000..8052932634 --- /dev/null +++ b/tests/combo/config.h @@ -0,0 +1,8 @@ +// Copyright 2023 Stefan Kerkmann (@KarlK90) +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include "test_common.h" + +#define TAPPING_TERM 200 |