-
My current keyboard requires me to swap my left So I did the following and got things working:
However, the problem with the above configuration is that it implements this mapping with a "complex modification". This makes me lose repeat keys, and prevents me from using shortcuts that trigger when both modifiers ( Is there a way to use |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Can you try to see if this solves your problems? map('left_command', 'optionalAny').to('left_option'),
map('left_option', 'optionalAny').to('left_command'),
// or
map('‹⌘', '??').to('‹⌃'),
map('‹⌃', '??').to('‹⌘'), Karabiner-Elements has an easy to use UI for "simple modification", and |
Beta Was this translation helpful? Give feedback.
Can you try to see if this solves your problems?
Karabiner-Elements has an easy to use UI for "simple modification", and
karabiner.ts
should be able to work with it without problems. Please let me know if that's not the case.