-
Notifications
You must be signed in to change notification settings - Fork 33
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
Bug / Feature Request: Support for multiline errors #90
Comments
Is message not showing because the editor run out of space or did the message stop before that? |
VSCode doesn't have api to show multi-line decorations. If code inset (webview inside editor) was implemented it would be possible microsoft/vscode#85682 Or maybe this one microsoft/vscode#3220 |
@usernamehw Hi. As you can see from the screenshot above, unfortunately the |
Perhaps tabs or carriage return. Could you try to install this version with modified regexp?
Or I can write how to modify installed extension:
|
I assume it worked. |
Some compilers e.g. F# commonly use multiline errors. I've tried using the
removeLinebreaks
setting but this does not help e.g.This is the "full" error shown in the pop-up or error pane:
But the error lens shows just the first line:
If the extension simply discarded new lines and put the entire message on a single line, might that be a reasonable solution?
The text was updated successfully, but these errors were encountered: