AltGr problem
![]() ![]() |
I have a problem with your script and the AltGr key. If I want to write, for example, an Euro sign, with my keyboard configuration I have to press AltGr and E. But if the script is active no character appears, so I cannot write square brackets, curly brackets, etc... The same happens with other key combinations like Ctrl+Alt+E. Can you check your keydown, keypress, etc... event listeners to solve this? |
![]() ![]() |
Okay this should be fixed now. Sorry about that. |
![]() ![]() |
It's working ok now. Thanks ;-) |
![]() ![]() |
The script isn't telling the difference between Alt and Ctrl+Alt (AltGr), so Ctrl+Alt+any key used as a shortcut will stop working (in my keyboard, for example, Ctrl+Alt+Q = @)
Maybe the shortcuts could also be customizable? |
![]() ![]() |
yeah, with german qwertz layout the AltGr + q is making an blockquote instead of an at-sign. |
![]() ![]() |
This can be fixed replacing the 2 instances of "e.altKey" for "e.altKey && !e.ctrlKey" (lines 216 and 397)Done. Maybe the shortcuts could also be customizable?Maybe someday, if I get the time. |


