From 7bdfbe00ad1229e75576fbc1e09382aa5878d608 Mon Sep 17 00:00:00 2001 From: D3faIt Date: Fri, 7 May 2021 23:16:33 +0200 Subject: [PATCH 1/3] Fixed curl output included in responds --- ftplugin/rest.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftplugin/rest.vim b/ftplugin/rest.vim index 7decc96..84dc861 100644 --- a/ftplugin/rest.vim +++ b/ftplugin/rest.vim @@ -493,7 +493,7 @@ function! s:GetCurlCommand(request) call add(curlArgs, s:GetCurlDataArgs(a:request)) endif return [ - \ 'curl ' . join(curlArgs) . ' ' . s:Shellescape(a:request.host . a:request.requestPath), + \ 'curl --silent ' . join(curlArgs) . ' ' . s:Shellescape(a:request.host . a:request.requestPath), \ curlOpts \] endfunction From febb7b5afdd819d5fdc401d012c8ce4a2440bcb8 Mon Sep 17 00:00:00 2001 From: D3faIt Date: Fri, 7 May 2021 23:34:44 +0200 Subject: [PATCH 2/3] README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b21dd79..367e365 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ To install using [pathogen.vim](https://github.com/tpope/vim-pathogen) To install using [Vundle](https://github.com/gmarik/Vundle.vim) " Add this line to .vimrc - Plugin 'diepm/vim-rest-console' + Plugin 'D3faIt/vim-rest-console' Other methods should work as well. From 49debec8b5eba433da261ff2d2e691c7793f9ecd Mon Sep 17 00:00:00 2001 From: Aadniz <8147434+Aadniz@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:55:09 +0100 Subject: [PATCH 3/3] Revert "README" This reverts commit febb7b5afdd819d5fdc401d012c8ce4a2440bcb8. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 367e365..b21dd79 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ To install using [pathogen.vim](https://github.com/tpope/vim-pathogen) To install using [Vundle](https://github.com/gmarik/Vundle.vim) " Add this line to .vimrc - Plugin 'D3faIt/vim-rest-console' + Plugin 'diepm/vim-rest-console' Other methods should work as well.