How to show type information when there is an error squiggel in visual studio [fsharp]

f#, intellisense, visual-studio

Solution

I found a way Ctrl+K I which is Ctrl+K then I by itself, which gets you

but you really need to do it with the mouse not over the target item

but this is really bad UX. It would be better if the type info and the error info just appeared together in a tooltip stack by default.

Problem

I am writing some FSharp code and if I put my mouse over `Query` in the first line then I see. However if I try the same thing with the line with the green squiggel I get which is ok because the error/warning is what I would expect. However if I also want to see the type information as in the first image I cannot figure out how to hide the error popup and show the type popup. In this case the error is easy to fix by assigning the output. In other cases the error can only be fixed if I can see the underlying type with the mouse over but I can't see the type because the error popup takes precedence. I don't really want a solution where I turn off errors permanently. There must be a shortcut/keycombo to hide the error popup or manually raise the type info popup.

Original source