How to grey out not used references ?
已回答
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

请先登录再写评论。
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 !