FSharp.Analyzers.SDK
FSharp.Analyzers.SDK copied to clipboard
Add ability to return tooltips from analyzer
It would be interesting to have the possibility to return tooltips from the analyzer. I haven't thought about it much yet but it seems it would require:
- Internal analyzer mutable state that could be updated while the analyzer is running keeping some kind of
Dictionary<Range, TooltipContent>
- API for querying this internal state that can be used by clients:
Position-> TooltipContent list