How simple is to write IntelliJ plugin (remark according documentation)
Answered
Developing IntelliJ plugin be like:
Oh! Link to source code! JavaDocs will explain me everything! Checking NotificationAction…
Ok, lets see Notification::addAction:
Yeah, you got me. Who needs docs...
Please guys make life of plugin developers easier :please:
PS: Sorry for being sarcastic.
Please sign in to leave a comment.
Hi Marcin,
Thank you for your feedback. We try to cover missing documentation gradually. Please understand that the platform code size is enormous and it takes time to do it.
Regarding this specific case, the
@see
tags are just links to related classes/methods, as there is no clear connection between them in the code. It is not a promise of documentation in the linked place. In case of missing docs, I suggest checking usages in the https://github.com/JetBrains/intellij-community repository or existing plugins (https://jb.gg/ipe).If you think an SDK Docs page could be updated, please use the Feedback widget at the bottom of the page. Thanks.
Thank you Karol,
I can imagine how big the codebase is. Good luck!