roast.vim
roast.vim copied to clipboard
An HTTP client for Vim, that can also be used as a REST client.
Especially for POST requests that return large or binary data, it could be helpful if the response is saved to a file only instead of loading the content into the...
Sometimes, it is not clear if a requests has been issued or if it takes a long time for getting the response. So, an in-progress indicator on requests would be...
Currently, SSL verification can be toggled using the `RoastSSLVerify` or `RoastSSLIgnore` commands. We should create a `use` directive that toggles SSL verification at a more granular level within a roast...
Just tested roast on a local web service I run called syncthing (API docs [here](https://docs.syncthing.net/dev/rest.html)). I have syncthing configured to use https, but since it's served off of localhost, clients...
HI ! It could be cool to make this plugin asynchronous? Actually, if the remote server take long time to deliver a response, Vim is totally blocked. To test it,...
Hi ! Maybe it could be cool to add a Tip to say how to copy an HTTP header of a request with Wireshark. As it, when a server generate...
Hi ! When we could see in `__roast_headers__`, on each request `Content-Length is automatically append in the header request. even if the roast file is like : ``` POST http://google.fr...
Hi ! Maybe it could be cool to have an option to display in same time the two windows `__roast_headers__` (maybe in small, to see at least response header) and...
Hi ! Actually this plugin is not compatible with Neovim, even if with a simple vimrc. Actually, when we press enter twice in a link `GET http://google.fr`, the second time...