1
0
forked from VimPlug/jedi

Add .venv to _IGNORE_FOLDERS

".venv" is a popular virtual environment folder name; project.search
gets really mucked up when it isn't ignored.
This commit is contained in:
Sam Roeca
2020-05-05 14:10:22 -04:00
committed by Dave Halter
parent d606ea6759
commit 812776b9ce

View File

@@ -9,7 +9,7 @@ from jedi.inference.imports import SubModuleName, load_module_from_path
from jedi.inference.filters import ParserTreeFilter
from jedi.inference.gradual.conversion import convert_names
_IGNORE_FOLDERS = ('.tox', 'venv', '__pycache__')
_IGNORE_FOLDERS = ('.tox', '.venv', 'venv', '__pycache__')
_OPENED_FILE_LIMIT = 2000
"""