Letting LWIN used as modifier for OS and softwares but when we tap them, it will do Alt+Space #117
-
Can I make it so that tapping LWIN will press LALT+SPACE but if I hold LWIN and press something else, it will do LWIN+ThatKey+<another key if there is one being pressed>. Perhaps during the holding of LWIN, it won't be sent to the OS until the other key is pressed. I'm currently do it like this: I tried this: I experimented: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Difficult... IMHO tapping modifiers should not trigger an immediate function, because I like to be able to press a modifier, then change my mind and release it again, without any complications. Also, it's rather easy to hit the modifiers on the bottom row accidentally. Therefore, capsicain does not support tap-modifier-for-action well. Your REWIRE is invalid, you can only rewire to plain keys, not to functions. I haven't tried it out (on my macbook right now), but what might (?) work is sth like this: ...while googling what Alt+space does, I learned that Microsoft is going to change that combo to "Launch our AI". Your config might be short-lived... |
Beta Was this translation helpful? Give feedback.
-
ALT+SPACE was default key for
|
Beta Was this translation helpful? Give feedback.
Difficult... IMHO tapping modifiers should not trigger an immediate function, because I like to be able to press a modifier, then change my mind and release it again, without any complications. Also, it's rather easy to hit the modifiers on the bottom row accidentally. Therefore, capsicain does not support tap-modifier-for-action well.
I'd opt for a mod+key combo like Win+X to trigger your Alt-Space.
Your REWIRE is invalid, you can only rewire to plain keys, not to functions.
I haven't tried it out (on my macbook right now), but what might (?) work is sth like this:
REWIRE LWIN LWIN F12
COMBO F12 [ ] > sequence(&LALT_SPACE_^LALT)
...while googling what Alt+space does, I learned that Micro…