Replies: 2 comments 6 replies
-
Today's release behaviour of chords is described in the docs. It is complicated, mainly due to backing implementation details. https://github.com/jtroo/kanata/blob/main/docs/config.adoc#input-chords There could be code added here to apply the same behaviour to the same simple actions within multi, making sure to only go one level deep: Line 945 in ffd5b82 |
Beta Was this translation helpful? Give feedback.
0 replies
-
Yeah, that's beyond my understaning of Rust :) I'll settle for the "layered" solution for now. Thanks for your efforts! |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The idea described here is to only activate home-row-mods when a corresponding thumb key is chorded together with them. E.g., to get
left meta
you need to chord the letterA
together with the thumb key. This is easily done viadefchords
:However, I cannot achieve the described behavior (at least how I understand it):
When I tap
f
+del
I do getlsft
- but only as long as I keep holdingf
. If I releasef
, while still holdingdel
,lsft
is relreased.Any thoughts why, and how do I fix it?
Beta Was this translation helpful? Give feedback.
All reactions