In windows (Vista 64) version 1057 I'm still having problems with
EditLine elements swallowing alt-/. Reading up on keypress events
I see they are :alt_/ but that specific section claims :alt_/ is
reserved, but nonetheless it gets consumed by EditLine.
So, then I look to see how one can kick off the console from code,
to simulate :alt_/ but I see nothing in the manual.
Trying to trap :alt_/ and calling info("") doesn't do anything.
Changing that to info(" ") and debug(" ") doesn't do anything
either.
Any suggestions?
keypress do |k|
if k == :alt_/
debug(" ")
else
debug "got #k{}"
end
end
within the app, is what I'm doing, but even for "x" I get nothing.
Hugh