-
Notifications
You must be signed in to change notification settings - Fork 11
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
Config option to wrap commands #7
Comments
This is close to #8, I'll get this out in a bit. |
jmcomets
added a commit
that referenced
this issue
May 26, 2014
Change `g:pony_python_cmd` to the appropriate command to run on the manage.py Django script. Defaults to **python**.
jmcomets
added a commit
that referenced
this issue
May 26, 2014
Change `g:pony_python_cmd` to the appropriate command to run on the manage.py Django script. Defaults to **python**.
Untested, but it really doesn't need it. Set the |
Doesn't do it for me - I need the quoting. I need the command to be shell escaped and to be able to wrap the escaped version in quotes. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I use virtualenvs or Vagrant VMs to encapsulate environments and Vim on the host to edit.
I'd like to be able to have a config option that allows me to wrap each python command in the necessary script to make it work.
For example, with config set to
vagrant ssh -c "%"
,./manage.py shell
would becomevagrant ssh -c "./manage.py shell"
.The text was updated successfully, but these errors were encountered: