-
I'm struggling to alter a combo alignment. I have a zmk combo called combos {
compatible = "zmk,combos";
space_hold {
bindings = <&kp SPACE>;
key-positions = <24 37>;
layers = <0>;
};
}; I want this combo to be aligned to the bottom, so I added this to my keymap-drawer config: zmk_combos:
combo_space_hold: {align: bottom} But it seems to have no effect. What am I doing wrong? And as always, thanks so much for this project! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Thanks! If your combo node is named |
Beta Was this translation helpful? Give feedback.
-
🤦 That was indeed the problem. Thanks! |
Beta Was this translation helpful? Give feedback.
Thanks!
If your combo node is named
space_hold
and notcombo_space_hold
, then you should use the former underzmk_combos
. It looks good to me other than that, so please give that a try.