My color settings are for a black background of the editor and are "all white" for the text except for the curly brackets, for those I have separate colors.
Now, when I make a typo like missing a bracket or parenthesis, the editors is triggered and easily shows the error in red, that's the color settings for error, BUT if I mistype a variable or functions name what it does it puts a tiny underline under the first letter which is hard to see.
I have changed any possible setting in the json file for the color settings that I thought they could have anything to do with the color setting for such typos and nothing does the job. I asked the Google AI, which no matter how I worded the question and the request, it ended up with
"workbench.colorCustomizations": {
"editorError.foreground": "#FFFF00", // Changes the color of the error squiggle
"editorError.border": "#FFFF00" // Changes the color of the border around an error
}
Which only affects the color settings for errors but not when there is a typo and the editor can't fin a variable with such name.
So the editor knows something is wrong, it even gives me a suggestion how to fix it, but I have no way of changing how the editor displays the whole name so I can easily spot it, now obviously once I run the code, but I want to be able to see it in the editor while I'm writing the code or checking it later on.
Is there a way to set them the way I want?