How to grey out not used references ?
Answered
Hi
I have a custom language named Jspresso.
I would like to grey out not used references candidates, like not used methods or classes for example.
Please point me in the right direction
Maxime
Please sign in to leave a comment.
You will have to implement an inspection or annotator which searches usages (e.g. via ReferencesSearch) and provides the "grey"/"unused" highlight/quickfix(es).
Thank you, it works wonder !