-
Notifications
You must be signed in to change notification settings - Fork 55
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
Curl Progress Meter is Disruptive #71
Comments
Actually, the progress meter goes is written to stderr, so for my use cases, |
This works for me:
Maybe this could become a configurable behavior :) |
Have you tried with |
@diepm no combination of arguments I could find actually produced the result I wanted, which was to always see the response body even if the HTTP status indicates an error, and no progress output. I'm not sure what Windows users can do, but maybe this can be put in a check for paltform, or for if the file exists. |
@dvisztempacct try this " vim-rest-console
let g:vrc_curl_opts = {
\ '--connect-timeout' : 10,
\ '-b': '/path/to/cookie',
\ '-c': '/path/to/cookie',
\ '-L': '',
\ '-i': '',
\ '-s': '',
\ '--max-time': 60,
\ '--ipv4': '',
\ '-k': '',
\} |
I've been running
curl
from the vim command line for a while now and have not been able to figure out how to getcurl
to two important things at the same time:It looks like this plugin suffers the same humiliation:
IMO the progress meter is annoying and irrelevant 99.9% of the time.
Maybe a different http client would work better?
The text was updated successfully, but these errors were encountered: