7

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?

Nick Berardi
  • 54,393
  • 15
  • 113
  • 135
Andrew
  • 11,894
  • 12
  • 69
  • 85

1 Answers1

2

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.

Chris Kimpton
  • 5,546
  • 6
  • 45
  • 72