interactive
interactive copied to clipboard
avoid generating angle brackets
How can I prevent this behavior from occurring? (https://github.com/dotnet/interactive/pull/1947)
How to avoid generating angle brackets during code completion?
I hope I get .Select() instand of .Select<>()
The logic for this is here:
https://github.com/dotnet/interactive/blob/400ef577daa828d5809fa271beeceaad884ea483/src/Microsoft.DotNet.Interactive.CSharp/CompletionExtensions.cs#L68
I wonder if the angle bracket insertion should be removed for all method calls. Sometimes it's useful because not all generic methods will have arguments that support type inference, but maybe your example is the more common case.