-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Intellisense XML Comment #337
feat: Intellisense XML Comment #337
Conversation
var compl = GetCompletionsFor("<DataTemplate"); | ||
|
||
Assert.Equal(2, compl.Completions.Count); | ||
Assert.Equal("DataTemplate", compl.Completions[0].DisplayText); | ||
Assert.Equal("DataTemplates", compl.Completions[1].DisplayText); | ||
Assert.Equal(3, compl.Completions.Count); | ||
Assert.Equal("DataTemplate", compl.Completions[1].DisplayText); | ||
Assert.Equal("DataTemplates", compl.Completions[2].DisplayText); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure, but is it going to propose to comment the line as a first option here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I same behaviour di WPF Editor.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because VS WPF Editor has type compatibility and collects usage statistics to propose at the head of the suggestions.
I will add these features in the next PRs.
# Conflicts: # CompletionEngine/Avalonia.Ide.CompletionEngine/Completion/CompletionEngine.cs # tests/CompletionEngineTests/BasicTests.cs
No description provided.