Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does a red triangle mean in Visual Studio Code?

I'm using Scrapy to crawl information and get my JSON file. What does a red rectangle and red background mean?


  1. enter image description here



  2. Enter image description here

like image 211
Дядя Фея Avatar asked Jul 02 '19 10:07

Дядя Фея


2 Answers

The red triangle is called a "Gutter Indicator".

It means a line has been deleted from the previous version of the file (based on Git).

like image 110
Bolchojeet Avatar answered Sep 20 '22 02:09

Bolchojeet


Visual Studio Code has an excellent integrated Git support for the most common commands. This makes it an excellent choice to manage your code commits while you develop.

For folders which are Git repositories, VS Code adds useful annotations to the gutter and to the overview ruler.

  • A red triangle indicates where lines have been deleted
  • A green bar indicates new added lines
  • A blue bar indicates modified lines
like image 27
Manish R Warang Avatar answered Sep 22 '22 02:09

Manish R Warang