You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you! (sorry for the late reply, notifications are a mess)
Yep definitely agree. At some point I thought I had it set up to complete to List[any] (which does work as the name is parsed like a type signature but I guess I never actually added that. Will do though
Ah, it works for parameters that accept a signature like Find-Member's ParameterType, but I should also rig it to work with Name I think. Little bit tricker since it's not actually resolvable without the namespace
First things first: Great module, thanks for sharing.
When you tab-complete a generic type, the
`
characters don't get escaped, which means that the completed results cannot be used as-is; e.g.:This yields
Find-Type List`1
, which does not work, because the`
needs escaping (Find-Type List``1
)Similarly, neither
Find-Type List`<tab>
norFind-Type List[<tab>
result in a completion.The text was updated successfully, but these errors were encountered: