Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ghostdoc-like plugin for IntelliJ IDEA

I've become lazy in my old age. For my C# work I've become quite reliant on Roland Weigelt's excellent GhostDoc plugin for Visual Studio.

Is anyone aware of a similar plugin for Java work in IntelliJ IDEA?

like image 676
Andrew Avatar asked Oct 06 '08 02:10

Andrew


1 Answers

The builtin javadoc completion does some of this - if you type /** and press it puts parameters and return types into a skeleton javadoc.

Not quite the same as Ghostdoc, but -q on the method name brings up its javadoc with a link to the relevant super type docs, if applicable.

I presume you have looked in the plugin repository.

like image 157
Chris Kimpton Avatar answered Oct 17 '22 18:10

Chris Kimpton