Skip to content
This repository has been archived by the owner on Aug 20, 2022. It is now read-only.

Commit

Permalink
Quick fix for neovim
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Mar 2, 2016
1 parent 8cd67b5 commit 9b67192
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions autoload/vital/__latest__/Web/API/GitHub.vim
Expand Up @@ -621,6 +621,10 @@ function! s:client.request(...) abort
\ 'Content-Type': 'application/json',
\}, settings.headers
\)
" neovim currently does not support 'bindeval'
if has('nvim')
let settings.client = ['curl', 'wget']
endif
return s:HTTP.request(settings)
endfunction
function! s:client.head(url, ...) abort
Expand Down

0 comments on commit 9b67192

Please sign in to comment.