This repository was archived by the owner on Jun 16, 2021. It is now read-only.

Description
I often have my virtualenv in my project's root directory, usually in .venv. I also like to leave off the hard-coded prefix, so my python path is often just
{
"python.pythonPath": ".venv/bin/python"
}
This extension, however, doesn't seem to like this.
The extension also doesn't seem to like the predefined VSCode variables mentioned here. For example, I could also have written
{
"python.pythonPath": "${workspaceFolder}/.venv/bin/python"
}
It'd be nice if the extension handled these cases!
Thanks for your work!