heavenshell / vim-pydocstring

Generate Python docstring to your Python source code.
BSD 3-Clause "New" or "Revised" License
337 stars 53 forks source link

Add README note regarding vim-plug and venv #95

Closed acamso closed 4 years ago

acamso commented 4 years ago

I was using Plug 'heavenshell/vim-pydocstring', { 'for': ['python'], 'do': 'make install' } to install the plugin via vim-plug and was receiving the 'doq' not found.Install 'doq' error when attempting to run :Pydocstring. It looks like the MakeFile creates a new venv for installing doq, so exits if there is an active venv. So, if the PlugInstall or PlugUpdate vim-plug commands were ran within a venv, doq would not install. I made a note of this in the README and fixed a grammar mistake.

heavenshell commented 4 years ago

Wow Thank you so much!!