Open manna-harbour opened 3 years ago
This would be great!
Any chance to get a PER_KEY for this feature?
I like mods on my left thumbs, and was frustrated waiting for the timeout before them being active with mod-taps on the same side. I added the below to the start of the bilateral_combinations_hold function to avoid my thumb row. I also define in my config.h: `
in action.c:
static void bilateral_combinations_hold(action_t action, keyevent_t event) {
# ifdef BILATERAL_COMBINATIONS_EXCEPTION_ROW if(event.key.row == BILATERAL_COMBINATIONS_EXCEPTION_ROW || event.key.row == BILATERAL_COMBINATIONS_EXCEPTION_ROW + MATRIX_ROWS / 2) return;
# endif
...
`
Bilateral Combinations
This is a proof of concept implementation. Please note the known issues.
A more correct implementation based on per-keypair tapping term is planned for the future. If successful, the current implementation will be dropped. If not, issues with the current implementation will be addressed and a PR submitted upstream.