how to extend the editor to insert temp comment on special code line?

I have write  a plugin  and I want to add comment on special line for the current open file. 

0
2 comments

You can use either use a line-extension editor API (EditorEx#registerLineExtensionPainter, EditorLinePainter) to display additional text after line ends, or inlay editor API (Editor.getInlayModel(), InlayModel.addInlayElement(...)) to display elements with arbitrary rendering.

0

Please sign in to leave a comment.