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
{{ message }}
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.
I implemented the "ICompletionDataFactory" interface to realize IntelliSense-features in my projects. But I get wrong completion data for overridable method names. I noticed that the method "CreateNewOverrideCompletionData" only gets called when the input string is something like
public override $
(without a type!) where $ is the cursor position.
But when the input string is something like
public override string $
(which is more correct) then "CreateNewOverrideCompletionData" is NOT called. Instead I get completion data containing all kinds of types but not a single overridable method name.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
I implemented the "ICompletionDataFactory" interface to realize IntelliSense-features in my projects. But I get wrong completion data for overridable method names. I noticed that the method "CreateNewOverrideCompletionData" only gets called when the input string is something like
public override $
(without a type!) where $ is the cursor position.
But when the input string is something like
public override string $
(which is more correct) then "CreateNewOverrideCompletionData" is NOT called. Instead I get completion data containing all kinds of types but not a single overridable method name.
The text was updated successfully, but these errors were encountered: