-
Hello, Thanks for your help so far. I have been using more and more of Karabiner Elements, thanks to your project. However, I have run into this minor issue where:
typing If I move Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
CleanShot.2024-06-29.at.09.59.01.mp4 |
Beta Was this translation helpful? Give feedback.
-
map('h', 'right_shift').to('left_arrow', 'left_option'), This doesn't work with If you want to have mappings more than that, you can use the layer condition variable instead: rule('More on navi layer').condition(ifVar('navi-layer')).manipulators([
// Put it above `navi-layer` so Karabiner runs it instead of
// `right_shift` + `h` on the simlayer
map('h', 'right_shift').to('left_arrow', 'left_option'),
]),
simlayer('spacebar', 'navi-layer').manipulators([
// map().to(), only one-key in map(), without modifiers
]), |
Beta Was this translation helpful? Give feedback.
This doesn't work with
simlayer
, which needs each key on the layer to be pressed together with the layer key.If you want to have mappings more than that, you can use the layer condition variable instead: