dotnet/roslyn
GitHub で見るCompletion treats `:` as a commit character when providing a name in a tuple pattern
Open
#61,170 opened on 2022年5月7日
Area-IDEIDE-IntelliSenseIntelliSense-Completionhelp wanted
Repository metrics
- Stars
- (20,414 stars)
- PR merge metrics
- (平均マージ 6d 17h) (30d で 256 merged PRs)
説明
Version Used: 17.2p6
Steps to Reproduce:
var test = (a: 1, b: 2, c: 3);
switch (test)
{
case ($$ 1, 2, 3):
break;
}
At the $$ location, type a:.
Expected Behavior:
The : isn't treated as a commit character, and a: is left alone.
Actual Behavior:
args: is inserted, as : is treated as a commit character and the highlighted completion is inserted.