Skip to content
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

Hide Unformatted TypeScript errors / move to after the pretty errors #3

Open
robertmoura opened this issue Apr 12, 2023 · 21 comments
Open
Labels
feature request Request a new feature vscode feature required New feature or request

Comments

@robertmoura
Copy link

robertmoura commented Apr 12, 2023

Really loving the format of these errors! It's a lot easier to read.

The only thing I noticed is that the unformatted errors are still showing up. Was this intended or is there a way to remove them?

Screenshot 2023-04-13 at 9 04 08 am

Update / TLDR

This is currently intentional but there are plans to improve the experience. This could potentially be improved by:

  • Removing the original error
  • Changing the order of the errors so that the pretty version is on top

The issue is that the improvements rely on changes to VS Code. Go upvote this issue if you want these changes!

@yoavbls wrote:

This is the issue that will eventually allow us to modify the order of the errors + mute the original error:
microsoft/vscode#54272

@robertmoura robertmoura changed the title Old errors still showing Unformatted TypeScript errors still showing Apr 12, 2023
@Samathingamajig
Copy link

this is intended.

3. VSCode markdown blocks all styling options, so I had to find hacks to style the error messages. e.g., there isn't an inlined code block on VSCode markdown, so I used a code block inside a codicon icon, which is the only thing that can be inlined. That's why it can't be copied. but it isn't a problem because you can still hover on the error and copy things from the original error pane.

VSCode markdown blocks all styling options, so I had to find hacks to style the error messages. e.g., there isn't an inlined code block on VSCode markdown, so I used a code block inside a codicon icon, which is the only thing that can be inlined. That's why it can't be copied. but it isn't a problem because you can still hover on the error and copy things from the original error pane.

@seahindeniz
Copy link

Hmm. Well, if it's possible, having an option to disable them is much preferred than having a bunch of similar errors in a scrollable small container. For the copy-pasting issue, I believe the error translation feature and also the built-in Problems panel should be enough, since it shows the raw version of the error.

@robertmoura
Copy link
Author

robertmoura commented Apr 13, 2023

I agree! Would be great to have an option to disable them. Personally I never copy these errors anyway.

@Samathingamajig
Copy link

at most, i copy the error number, in this case ts(6196) or just 6196 and type ts in the search bar

@yoavbls
Copy link
Owner

yoavbls commented Apr 13, 2023

@robertmoura Thank you for opening this issue 💁🏼‍♀️
As @Samathingamajig said, it is intended, but I planned to add an option to choose whether you want to see TypeScript original errors after I'll succeed in making the types copyable.
Unfortunately, I failed to find a hack due to the strict limitations there:
https://github.com/microsoft/vscode/blob/b0d7acec38cfab4d82630cba64d581bf1cd1a305/src/vs/base/browser/markdownRenderer.ts#L372

So, I'll explore adding a setting that will hide TypeScript's original errors very soon.
Until then, if someone want to open a PR for that, you're more than welcome 🙂

@Samathingamajig
Copy link

Are extensions able to silence the errors of another extension?

@tjx666
Copy link

tjx666 commented Apr 14, 2023

@mjbvz @johnsoncodehk

@yoavbls
Copy link
Owner

yoavbls commented Apr 15, 2023

@Samathingamajig Actually I didn't find any API of VSCode that allows that.
Does someone have an idea how we can remove the original TypeScript diagnostics?

Maybe we should address it with a language service plugin like this guy did here?
@johnsoncodehk @Samathingamajig @tjx666
WDYT?

@Samathingamajig
Copy link

Maybe we should address it with a language service plugin like this guy did here?
@Samathingamajig WDYT?

Personally, I don't think it's worth it to try to silence the original error. Since formatting restricts the ability to copy/paste the error with the customize one, you get the benefit of being able to easily copy the raw error without going to the error panel. I would imagine silencing the error with a language service plugin would also remove the error from the error panel, as well as hiding it from your extension (unless your extension relies on a separate language server, which I doubt).

@nicooprat
Copy link

At least it would be cool to have the pretty error first in the tooltip 🤞

@yoavbls
Copy link
Owner

yoavbls commented Apr 18, 2023

It was the first on the tooltip a while ago, I'm not sure why it changed.
@johnsoncodehk has some breakthroughs there by moving the error-providing mechanism to the language service plugin.
It'll allow us to control the order and hide the original errors.

We'll update about it soon 🙏🏼

@johnsoncodehk
Copy link
Contributor

Just to clarify...don't expect it, the language server can cut the original error message, but this will also cause extensions like ErrorLens that rely on diagnostic messages to not work, so I don't think that's the way forward. Still need see VSCode how to improve.

In addition, the language server can only control the order of hover messages, but cannot make the hover messages displayed on top of the diagnosis.

Sorry for the false hopes.

@yoavbls yoavbls added the vscode feature required New feature or request label Apr 18, 2023
@corysimmons
Copy link

Can someone just link to a VSCode repo Issue where we can 👍 some "Let us tweak this" issue?

@estubmo
Copy link

estubmo commented Apr 19, 2023

Maybe we should address it with a language service plugin like this guy did here?
@Samathingamajig WDYT?

Personally, I don't think it's worth it to try to silence the original error. Since formatting restricts the ability to copy/paste the error with the customize one, you get the benefit of being able to easily copy the raw error without going to the error panel. I would imagine silencing the error with a language service plugin would also remove the error from the error panel, as well as hiding it from your extension (unless your extension relies on a separate language server, which I doubt).

A good solution for that would be to hide the original error, but add a button for copying it all to the clipboard.

@Samathingamajig
Copy link

A good solution for that would be to hide the original error, but add a button for copying it all to the clipboard.

read the last sentence

@Samathingamajig
Copy link

@RoyiNamir It could be made more prominent, however, it is mentioned on the main screen of the extension.

3. VSCode markdown blocks all styling options, so I had to find hacks to style the error messages. e.g., there isn't an inlined code block on VSCode markdown, so I used a code block inside a codicon icon, which is the only thing that can be inlined. That's why it can't be copied. but it isn't a problem because you can still hover on the error and copy things from the original error pane.

VSCode markdown blocks all styling options, so I had to find hacks to style the error messages. e.g., there isn't an inlined code block on VSCode markdown, so I used a code block inside a codicon icon, which is the only thing that can be inlined. That's why it can't be copied. but it isn't a problem because you can still hover on the error and copy things from the original error pane.

(emphasis mine)

@daaanny90
Copy link

@RoyiNamir A bit rude but I was expecting also only the beautified error. That's why I found this issue.

@yoavbls
Copy link
Owner

yoavbls commented Apr 21, 2023

This is the issue that will eventually allow us to modify the order of the errors + mute the original error:
microsoft/vscode#54272

Every vote or comment could help!

@robertmoura Can you add it to the content of the issue please? 🙏🏼

@yoavbls yoavbls changed the title Unformatted TypeScript errors still showing Hide Unformatted TypeScript errors / move to after the pretty errors May 1, 2023
@yoavbls yoavbls added the feature request Request a new feature label May 1, 2023
@blasco
Copy link

blasco commented Aug 28, 2023

This would be great, voting 👍

@scottybrown
Copy link

scottybrown commented Nov 12, 2023

If this is expected behaviour, perhaps the README.md could be updated to better explain how it works.
Screenshot 2023-11-12 at 3 40 06 pm
This extension doesn't give you "this" "instead of that". It gives you both, and the ugly "that" gets priority. The only way to find out it's meant to work that way is to browse the issues :)

@oscklm
Copy link

oscklm commented Nov 21, 2023

I can confirm that the original "ugly" typescript errors in fact do appear over the "pretty" ones for me as well, feels like they were on top before, so might be as of lately that pretty ones appear below, sadly. For long error messages, this quickly makes the extension near useless, as scrolling the tiny little problems window is far from easy.

I would agree that the README should be updated to more accurately show how the errors will be displayed.

Hope that VSCode will allow for a way to work around this. It's sad, since the extension is def one of my favourites 🙏🏽

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request Request a new feature vscode feature required New feature or request
Projects
None yet
Development

No branches or pull requests