Visual Studio Code Theming - change editor error indicator - visual-studio-code

Does the Visual Studio Code Theme Colour Reference have an entry for the red underscore used by the editor to signify, for example, a syntax error?

Yes, this was added in VSCode 1.13 (which is currently the vscode insider build). Try setting editorError.foreground
Here's a preview of some the other error/warning theming options coming in 1.13: https://github.com/Microsoft/vscode-docs/blob/vnext/release-notes/v1_13.md#theming

Related

Visual Studio Code's intellisense is not working

For some reason my VScode's intellisense is not working. I'm using the M1 Macbook pro and zsh for my terminal, not sure if that's relevant but I'm no longer getting any dropdown options. I tried expanding the box of suggestions but there's nothing other than a syntax suggestion:
Any suggestions? I assumed this was supposed to work out of the box, I deactivated Emmet as well but it's not budging.

Why SASS code is not showed up in colored form in Visual Studio Code?

I am using Visual Studio Code for the front end development project. Unfortunately, VS Code stopped showing me colored version of SASS file. May I ask please what is the solution?
I've had the same problem, you can install this extension in vscode:
https://marketplace.visualstudio.com/items?itemName=Syler.sass-indented

VScode autocomplete doesn't work for CSS files

Autocomplete for CSS is not working in VSCode.
Usually, if I start writing an statement inside a CSS file, VSCode has an intenseness, which suggested all possible options.
But as you can see, it doesn't work inside my css file.
Any help?
I had the same issue after I installed the VSCode extension PostCSS Language Support,
I fixed it by disabling the extension.
If you have PostCSS Language Support installed add the following config in your settings.
{
"emmet.includeLanguages": {
"postcss": "css"
}
}
If you are using the PostCSS Language Support plugin, you may want to additionally install the PostCSS Intellisense and Highlighting plugin. Follow the plugin instructions to enable emmet support.
I realized that at the bottom right of the screen, my language mode was set to postCSS. So simply clicking there and changing it to CSS solved this. Images are for illustration
you might have installed some extensions which prevent css form doing autocomplete, uninstalling the latest extensions (from the time it started happening) will resolve your problem
You have to download visual studio code system rather than visual studio code use.... go to official site of visual studio code.... and select an option visual studio code system 64 or 32 bit..... Now you have to run the setup as "Run as administrator"

Getting black screen in visual studio after Installation completed

I was getting black screen after opening Visual studio each time. I got a solution from Stack overflow i.e code --disable-gpu. It is working fine but my main issue is when I use to code in vs code. I am not getting suggestions as intellisense is not working and I am unable to install any extensions from Visual studio code.
to disable hardware acceleration permanently (without adding --disable-gpu argument) open folder "C:\Users\your_username_here\.vscode" than open file argv.json with any editor and look for
"//disable-hardware-acceleration": true, and just remove the tow slashes before disable. i think there is a similar workaround in linux
Hit Ctrl Shift P to open the command palette,
Type Developer and choose Developer: Toggle Developer Tools.
switch to the Network tab in Dev tools.
Search for extensions now
Go to properties of visual studio
change target . Add --disable-gpu
make sure to add a space before --
it will resolve your issue.

Is it possible to add auto-completion into external code editors for Unity

I just started using Unity with Visual Studio Code and got it up and running to use it instead of the default code editor but VSC doesnt display auto-completion and I am wondering if it is even possible to add this feature into Visual Studio Code and if yes, how to do so.