How can I add a key binding for a quickMenu similar to the “Refactor” context menu in JDT?
You can also do it like this: Add a command for the quick menu and set a default handler. <command defaultHandler=”myplugin.refactoring.QuickmenuHandler” id=”myplugin.refactoring.quickMenu” name=”Show Refactor Quick Menu”> </command> The handler should be able to create the menu. Something like this: @Override public Object execute(ExecutionEvent event) throws ExecutionException { … Menu menu = new Menu(some parent); new … Read more