I have a plugin which uses show_quick_panel. Is it posssible to do something different when I hit, say, ctrl+enter to select an item instead of simply enter? Or any other keystroke.
There doesn’t seem to be anything in the API for this, but perhaps I can do something clever in the keymap? I tried something like
{ "keys": ["f3"], "command": "mru_plus", "context": [
{ "key": "last_command", "operator": "equal", "operand": "mru_plus" },
{ "key": "popup_is_visible" },
{ "key": "popup_has_focus" }
]},
but got no command for selector: noop:
mru_plus is a valid command that runs if I remove the context arg.
Thank in advance for any ideas