-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for virtualenv #6
Comments
Hi, thanks for the issue! What's the desired configuration / behavior you have in mind? Does appending the virtual environment to your To me a tricky thing with the latter is that projects can have pinned isort versions, so it doesn't necessarily make sense to prioritize a copy of As a side note, sandboxed |
Thank you for fast reply! Desired configuration would be to have the same behavior as Black so that when I set I use Vim Plug, so Mason tip would not work for me, but thank you for the suggestion. |
Ok! I'm still trying to figure out what the logic is for selecting which Do you have an example from another plugin? I checked the official Black one and couldn't find anything about
There's not actually any incompatibility here; you would install |
|
It's customary to use Python tools in Neovim from their own virtualenv so that it does not clutter the main system. Currently this plugin does not allow for such customization.
e.g. Neovim allows to set Python with
let g:python3_host_prog = $HOME . '/.virtualenvs/nvim/bin/python3'
andBlack
has a proper support for thisThe text was updated successfully, but these errors were encountered: