-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hide irrelevant error in postint, doc minimum python version, doc on …
…how to properly map wheels
- Loading branch information
Showing
3 changed files
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
568f56c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello,
when I try to remap key with symbols like ŋ, ɔ, ɛ, ʉ, etc I get this erro notification ""adiaeresis": The output_symbol "ɛ" is not a macro and not a valid keycode-name".
Please can you tel me where to get a full list of keycode-names?
Thanks
568f56c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See here https://github.com/sezanzeb/input-remapper/blob/main/readme/usage.md#key-names
And one paragraph below that you can see an explanation on how to inject special characters
If there is still no way for you to inject it, you can check out https://github.com/sezanzeb/input-remapper/blob/main/readme/examples.md#emitting-unavailable-symbols
568f56c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your prompt answer.
But it could not bring me further.
My Situation ist: I have a german Keyboard and I am remapping ä, ö, ü, ß with ŋ, ɔ, ɛ, ʉ
;-)
I tried the key combination using the Unicode of the character.
For example the Unicode of ε is U+03b5. When I want to type it I use Ctrl + Shift + U [Unicode in hex] Enter
According to the usage it should be like this
Shift_L + Control_L + KEY_U + 3B5 + Return
But unfortunately I still get thy error message "The device was not grabbed"
I added a screenshot of my.
Please can you tell me what I'm doing wrong?
Thanks
568f56c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello @sezanzeb ,
please I'm still waiting for your answer. It will be a pleasure for me to rema properly my keyboard using your powerful remaper.
Thanks
568f56c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
3B5 is not a key. Try 3 + B + 5
568f56c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @sezanzeb,
I tried it. The error message disappeared, but it doesn't work.
for example when I pressed the key "ä" where I assigned "Shift_L + Control_L + KEY_U + 3 +B + 5 + Return" only the first part "Shift_L + Control_L + KEY_U" has ben considered and it is expecting that I enter the utf8 code and press enter.
I suppose it only considered it because all this 3 Keys are pressed simultaneously and the rest (utf8 code and enter) are successively. I also tried to use key_up and key_down bet without success.
Can you have an Idea how to get it all work?
Thanks in advance.
568f56c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hold_keys(Shift_L, Control_L, KEY_U).key(3).key(B).key(5).key(Return)
568f56c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
woooww that is Perfet. It works like a charme.
568f56c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Many thanks for this prompt support.