Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What do the Visual Studio margin colors mean?

I noticed that Visual Studio colors a few pixel wide area in the margin, to the right of the area where you place breakpoints. What do these colors mean?

like image 942
jasonh Avatar asked Jun 10 '09 03:06

jasonh


People also ask

What does yellow underline mean in Visual Studio?

A red underline would indicate an error, yellow is just a warning.

What is yellow line in VS code?

The yellow line is a warning. You defined -[prefix]-transform but did not set transform without prefix. You should also see warning icons at the bottom left corner of VSCode (two icons, one for errors, one for warnings). Click on those to get a detailed report.

What does green line mean in VS code?

Green = Line changed since you opened the file, but saved.

What is Blue line in VS code?

This blue line shows the warning to us because of linter .


1 Answers

Colours as follows:

  • No colour = Line unchanged since you opened the file
  • Green = Line changed since you opened the file, but saved
  • Yellow = Line changed since you last saved
  • Blue = Line changed and saved, then reverted back by undoing.

To see the entire list of colours, go to Tools>Options>Environment>Fonts and Colors.

like image 169
Damovisa Avatar answered Sep 22 '22 10:09

Damovisa