vim-http
vim-http copied to clipboard
only supports hard coded list of HTTP methods/verbs
had to add PATCH manually in a number of places today, this should really should just be able to take anything.
@nicwest What do you think about replacing the verb part of the regex
\(OPTIONS\|GET\|HEAD\|POST\|PUT\|DELETE\|TRACE\|CONNECT\|PATCH\)
with
\(\a*\)
since the first word should just be passed to curl, instead of validating if it matches the list of verbs.