-
Notifications
You must be signed in to change notification settings - Fork 29.4k
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
Wrong color of console.log token #104616
Comments
Can you please explain why the color is wrong? |
Same for me. Console logs are hardly distinguishable now. |
Thanks for the explanation. The previous coloring was incorrect and was coming from the If you want proper distinct colorization for |
Why can we not have what we have before? At least it was correct. |
This should not be closed, the issue still exists AND wasn't broke before |
Ok, so the original implementation, whilst correct, was done wrong. Methods and classes like console, which are system etc. should be in reserved colouring |
As mentioned, please open an issue against TypeScript if you want We're not going to intentionally make the grammar incorrect again |
Why we need to make a issue for typescript, if the problem concerns not it? The problem is that you have taken away from us the ability to specify the color for a specific token. Add a token Just add a token, that's all we ask, why complicate... P.S. I love VS Code, i think it's best code editor in world. And i make theme for him, and the code becomes clearer and more readable with it, but from now I lose the ability to customize my theme and it's sad. |
Lost interest in this, yes its open source, but the mindset is typical microsoft. |
Incidentally, found a fix... use a pre 1.48 vscodium... god no idea how much microsoft suck... windows 10, yay... hahaha |
Finally found a workaround for this issue. you have to enable semanticHighlighting and then add a property that will change the color manually create a folder called .vscode
hope this helps peeps in distress 😝 |
@bantingGamer good tip. Looks like the |
As an alternative to setting this in each folder's .vscode subfolder you can do it at the user level. One way is to run the |
enabling |
Thank you, I'm happy for that! |
What about the people that don't want semantic highlighting?
…On Thu, 17 Sep 2020, 01:39 vadimvorenas, ***@***.***> wrote:
Finally found a workaround for this issue.
you have to enable *semanticHighlighting* and then add a property that
will change the color manually
create a folder called *.vscode*
create a file called *settings.json*
add the following code:
{
"editor.semanticTokenColorCustomizations": {
"enabled": true,
"rules": {
"variable.defaultLibrary": "#4EC9B0"
}
}
}
hope this helps peeps in distress 😝
Thank you, I'm happy for that!
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#104616 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AADXYQVD2YTDKWLIFHNBE4TSGC5YVANCNFSM4P7DDTEQ>
.
|
They don't need to do anything, because by default it is, and this theme was specially created for this - how to undo the default actions Much more important is the question - what to do when deleting a small file puts the entire editor in a stupor for 30 seconds? |
Version: 1.48.0
Commit: db40434
Date: 2020-08-13T08:03:27.059Z
Electron: 7.3.2
Chrome: 78.0.3904.130
Node.js: 12.8.1
V8: 7.8.279.23-electron.0
OS: Darwin x64 19.5.0
Steps to Reproduce:
this is a follow up of #91818
this was working fine before I updated to v1.48
editor.semanticHighlighting
is disabledI'm using the theme
Before the update the console was yellow
Changing the
tokenColorCustomizations
to this doesn't do anythingDoes this issue occur when all extensions are disabled?: Yes/No
Yes
The text was updated successfully, but these errors were encountered: