Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the checkmark icon next to my project in PyCharm?

Tags:

python

pycharm

One of my PyCharm projects has an extra icon next to its name. I'm referring to what looks like a checkmark between the folder icon and the name of the project. Does anyone know what it is? I can't find anything in the documentation. My other projects don't have this icon -- perhaps I modified some setting in this one that made it appear?

enter image description here

like image 876
MexTek Avatar asked May 16 '15 22:05

MexTek


People also ask

What does V mean in PyCharm?

'V' means variable. Checkout the pycharm symbol guide as a reference. Remember that in python you can store methods/functions in variables.

How do you check out a project in PyCharm?

From the main menu, choose VCS | Get from Version Control. In the Get from Version Control dialog, click Add Repository Location and specify the repository URL. Click Check Out. In the dialog that opens, specify the destination directory where the local copy of the repository files will be created, and click OK.

What does red dot in PyCharm mean?

00:28 What you can do in PyCharm is you can simply set up a breakpoint by clicking here in between the numbers and your code. Click here, and it creates this red dot, which means that it sets a breakpoint.


1 Answers

It means the file is bookmarked. You can get rid of it by selecting the file in the project window and pressing CTRL + F11 (or just F11).

Here is more detail (although they do not mention the checkmark...): https://www.jetbrains.com/help/pycharm/5.0/managing-bookmarks.html?origin=old_help

like image 151
musicformellons Avatar answered Sep 20 '22 04:09

musicformellons