How to provide actions for Alt + Enter functionality?
Hi,
In the editor, you can press Alt + Enter over a symbol and it will give some suggested actions in a popup menu (what is the official name of this?)
I'm working on a JavaScript plugin and would like to provide my own actions in that menu instead, is that possible?
Please sign in to leave a comment.
Hi Chris,
Check out these great demos by Dmitry Jemerov
http://tv.jetbrains.net/videocontent/live-coding-an-intellij-idea-plugin-from-scratch
http://tv.jetbrains.net/videocontent/live-coding-an-intellij-idea-plugin-from-scratch-part-2
Alan
Edit - And if you are doing a custom language be sure to check out http://confluence.jetbrains.com/display/IntelliJIDEA/Custom+Language+Support
Hi, Chris.
For writing actions that may be accessed after pressing Ctrl+Enter you should use IntentionAction and IntentionManager classes.
Community version of IDEA contains a lot of examples how to implement this interface
@... Interesting. Could you point to a sample file or guide? (link)