1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 09:20:06 +08:00
SpaceVim/bundle/github.vim/autoload/github/api.vim
2023-03-31 13:32:08 +08:00

8 lines
181 B
VimL
Vendored

function! github#api#authorize() abort
if !empty(g:githubapi_token)
return ['--header', "Authorization: Bearer " . g:githubapi_token]
else
return []
endif
endfunction