dotnet / dotnet/csharp-tmLanguage
C# Method Syntax format grammar recognition
- Dominant language
- TypeScript
- Stars
- 78
- Forks
- 43
- Avg merge
- 34m
- Merged PRs (30d)
- 1
Description
_From @CCludts on January 3, 2019 5:47_
The method name is only recognized as `source.cs` instead of `storage.type.cs` when formatting function signatures in certain cases.

``` csharp
public class Hello {
// correct syntax highlighting
public Task<(string users, string missingUserIds, string unprocessedUserIds)> FetchUsers() {
return null;
}
// different formatting. breaks syntax highlighting
public Task<(
string users,
string missingUserIds,
string unprocessedUserIds)> FetchUsers() {
return null;
}
}
```
_Copied from original issue: Microsoft/vscode#65951_
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.