You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to create a specific macro in which my email address should be written. But if I use an @ symbol, instead of the @ symbol there is only a "
Is it possible to implement this differently?
Kind Regards
The text was updated successfully, but these errors were encountered:
The @ symbol expands to the keycode LSFT(KC_2) because on a US keyboard Shift + 2 makes an @
Suppose you used a Scandinavian keyboard this you would get a " since Shift + 2 is " whereas AltGr + 2 is @.
So on Scandinavian keyboards you would use the RALT(KC_2) keycode.
Edit: woops just saw the macro text the question, please excuse this wrong respone
Edit2: A macro text assumes US layout, the workaround would be to do:
Text: thisGuy
Tap: RALT(KC_2)
Text: example.org
Hello ,
I would like to create a specific macro in which my email address should be written. But if I use an @ symbol, instead of the @ symbol there is only a "
Is it possible to implement this differently?
Kind Regards
The text was updated successfully, but these errors were encountered: