VS code underlines modified lines

I can not find a parameter that allows me to highlight changed / changed / new lines in the editor. Like in this screenshot from the google angular2 video.

How to enable a modified hilight line?

Vs code modified / changed / new lines highlight

+6
source share
1 answer

This is because your file is under version control. If you have files in git and open the folder in VS code. You will see colors depending on the change you make.

enter image description here

Check the Gutter Indicators section.

+2
source

Source: https://habr.com/ru/post/1013277/


All Articles