Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

@ in Text macro #274

Open
Domme0506 opened this issue Nov 8, 2024 · 2 comments
Open

@ in Text macro #274

Domme0506 opened this issue Nov 8, 2024 · 2 comments

Comments

@Domme0506
Copy link

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

@Nisker
Copy link
Contributor

Nisker commented Nov 8, 2024

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

@Domme0506
Copy link
Author

and how can i use this combo in the macro editor ?

Screenshot 2024-11-08 230926

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants