Open GoogleCodeExporter opened 8 years ago
Is the Ctrl-^ combination supposed to create a single byte "\x1E" (similar to
Ctrl-] which does work), or a more complex combination? See issue 149 for the
more general issue of complex modifier combinations.
Original comment by Klaus.We...@gmail.com
on 22 Jan 2013 at 7:46
Hm, turns out this may be a bit tricky to implement without breaking other
applications. Currently, the keyboard restricts the Ctrl/Alt modifiers to the
main symbols, since it can't send a key event for Ctrl + ^ - the caret doesn't
exist as a keyboard key for events since it's only reachable via shift. It
would need to send Ctrl-Shift-6, but the resulting translation is dependent on
the OS keymap which is independent of the software keyboard's map, and I doubt
this would work correctly.
I'll think about it, but I'm unsure if there's a good general workaround. Maybe
as an opt-in option. Does it work if you use a hardware keyboard?
Original comment by Klaus.We...@gmail.com
on 23 Jan 2013 at 6:34
Original issue reported on code.google.com by
dave.a.h...@gmail.com
on 4 Sep 2012 at 4:35