I created a textmate project for a django app I’m working on, and I want to permanently remove the reference to “venv” folder from the project, but everytime I remove the “venv” folder from the project (deleting the reference), everytime I open the project again, I have to repeat that process. How do I just permanently remove a file/folder reference?
Having this “venv” folder in the project makes my project-searching A LOT slower.
It sounds like your project has a reference to a folder that has the ‘venv’ folder in it. Textmate is going to refresh the contents of the referenced folder every time it gains focus, including the ‘venv’ folder. This is helpful when you want it to see newly added folders, not so helpful when you want to exclude things.
While not the most fine-grained fix, you can exclude folders as noted in the docs:
Adding ‘venv’ to that regex should keep it from (ever) being included.