Easy way to add a context action to Eclipse - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T03:49:30Z http://stackoverflow.com/feeds/question/268770 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/268770/easy-way-to-add-a-context-action-to-eclipse 2 Easy way to add a context action to Eclipse Paulo Guedes 2008-11-06T13:55:54Z 2008-11-06T14:14:04Z <p>I'm trying to add a very simple action to the context menu of Eclipse: clicking with right button over a folder object, this action should call an external tool (configured in the "External Tools") using the path of the folder as the only parameter.</p> <p>I've found a <a href="http://www.eclipse.org/articles/article.php?file=Article-action-contribution/index.html" rel="nofollow">tutorial on how to add a context menu</a>, but it's more complex than what I need -- I don't really want to create a plugin, I don't even want to create classes to do what I want. My only purpose is to call an external tool.</p> <p>How can I do it?</p> http://stackoverflow.com/questions/268770/easy-way-to-add-a-context-action-to-eclipse/268813#268813 2 Answer by Daan for Easy way to add a context action to Eclipse Daan 2008-11-06T14:14:04Z 2008-11-06T14:14:04Z <p>If you want to extend Eclipse with functionality such as editing context menu's, the only way to go is by writing a plug-in. However, this can be very light-weight and targeted to your needs, so the tutorial you found might be a good way to do it. </p>