There is currently no such shortcut. Only three shortcuts to which you refer are mentioned in the documentation (alt + slash for the console, alt + question for reference and alt + period for a new application), and indeed, the code contains only these shortcuts. Indeed, shoes/app.c has the following lines:
shoes_code shoes_app_keypress(shoes_app *app, VALUE key) { if (key == symAltSlash) rb_eval_string("Shoes.show_log"); else if (key == symAltQuest) rb_eval_string("Shoes.show_manual"); else if (key == symAltDot) rb_eval_string("Shoes.show_selector"); else shoes_canvas_send_keypress(app->canvas, key); return SHOES_OK; }
In other words, three well-known shortcuts are captured and processed specially, while any other keystroke is sent to the corresponding application.
However, it may be possible to write your own βwrapperβ that will accomplish your desired task.
source share