-
Notifications
You must be signed in to change notification settings - Fork 676
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
C# IntelliSense Hints are unreadable (new lines are missing) #1057
Comments
Hi, any news on the issue? |
@filipw: Looking at omnisharp-roslyn, I see some weird code related to this. It appears that both the IntelliSenseService and TypeLookupService pass FormattingOptions.NewLine to the DocumentConverter. Any idea why we do that? Is there any reason that DocumentConverter shouldn't just use |
it's a leftover from the old OmniSharp server - that's how it behaved originally. |
the behavior is bad though. Shouldn't we change it? |
it's super bizarre. "Only use line endings like I describe in FormattingOptions, which default to \n". |
It doesn't fix this problem anyway. I'm wondering if there's something deeper in VS Code that's doing weird things here. |
I'll investigate this more for 1.8 |
🙈 |
lol |
This issue has been fixed in the 1.14 milestone. We just released a beta of 1.14 - https://github.com/OmniSharp/omnisharp-vscode/releases/tag/v1.14.0-beta4. Follow these instructions to install a beta release of C# for VS Code. |
Steps to Reproduce:
Below example code and the IntelliSense hint containing parsed XML documentation. If it contains more than one tag (ex. few function parameters + returns) all are displayed in one line therefore it is unreadable. It seems that new lines are missing between
<param>
and<returns>
tags.The text was updated successfully, but these errors were encountered: