so, you can intercept keypresses with:
keypress do |k|
case k
when :alt_q
quit
when :alt_c
self.clipboard = str
when :alt_v
str += self.clipboard
end
which works just fine, until your focus is inside an edit_line or
edit_box (or any other control for that matter). Now suddenly you're
stuck? The control seems to intercept all the keypresses before they
reach the application, and there doesn't seem to be any easy way to
change that?
anyone have some advise for a clueless guy who doesn't know shoes?
Mark