daveoftheparty / speedy-moq

Generate boilerplate code for Moq in C#
MIT License
1 stars 0 forks source link

file that is open but not ready for a diagnostic generated replace doesn't get the lightbulb #9

Closed daveoftheparty closed 3 years ago

daveoftheparty commented 3 years ago

Current scenario at commit 905d5f10c164cb8db9c6d1c8de0b1a5e1617cb2f

is that I open the extension, and it starts to load interface definitions, which takes a second or three. If I make no changes/saves to the file, once the interface definitions are loaded, I don't get a diagnostic/quick fix lightbulb-- because nothing has triggered new collection of diagnostics since the interface registration dictionary was setup.

Need a way to signal the TextDoc handler that it's time to poll for diagnostics again, once the compilation symbols have been loaded up.

daveoftheparty commented 3 years ago

This appears to be fixed with PR #20 so closing it for now unless we see the behavior again