ZMK version of Magic Keys? ( I have apt/vylet layout similar WR bigram SFB) #128
Unanswered
testaccount1979
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
@urob Thank you for this repo ! this had made my transition from larger layouts to smaller ones much easier. One quick thing i cant seem to find in docs for zmk, but how would you go about say doing a magic key replace for subsequent key press... (say if SFB "WR",,, i wanted to do ring to thumb magic key/shift how would i code that? ) There are certain SFBs and LSBs I want to avoid just for comfort and ease of personal preference. (Pretty new to all this so any direction would be greatly appreciated!)
#define MAGIC_SHIFT &magic_shift LSHFT 0
ZMK_HOLD_TAP(magic_shift, bindings = <&kp>, <&magic_shift_tap>;
flavor = "balanced"; tapping-term-ms = <200>;
quick-tap-ms = <QUICK_TAP_MS>;)
ZMK_MOD_MORPH(magic_shift_tap, bindings = <&shift_repeat>, <&caps_word>;
mods = <(MOD_LSFT)>;)
ZMK_ADAPTIVE_KEY(
shift_repeat, bindings = <&sk LSHFT>;
repeat {
trigger-keys = ;
bindings = <&key_repeat>;
max-prior-idle-ms = <1200>;
strict-modifiers;
};)
Beta Was this translation helpful? Give feedback.
All reactions