-
Notifications
You must be signed in to change notification settings - Fork 48
Support %p
expansion for pylint
executable
#62
Comments
It might also be nice to use the specified executable if it exists, but degrade to one found in Alternately, maybe enable something like this?
Which would result in an attempt to find
When combined with
If environment variable expansion was also available, one could do (e.g.):
|
cc @SpainTrain |
Definitely agree.
Also agree with this. I prefer this approach to the alternative of reimplementing the priority logic of finding executables in If it's reasonable, I think we will plan for |
I think this handles all the important use cases. Even if the global % mkdir -p "${HOME}/bin"
% ln -s "$( which pylint-2.7 )" "${HOME}/bin/pylint"
...
% export PATH="${HOME}/bin:${PATH:+:}${PATH}" That work-around doesn't require |
sadovnychyi/autocomplete-python has a solution (for python binaries) that seems to work well. It expands It might be nice to support other variable expansion/notation as well (e.g., |
This should now be closed by #91 |
Even with #24, it might be nice to be able to do something like this:
But right now, despite
[PROJECT_DIR]/.venv/bin/pylint
existing, one still gets this error:The text was updated successfully, but these errors were encountered: