1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 07:40:05 +08:00
SpaceVim/bundle/github.vim/autoload/github/api.vim
2023-03-31 13:32:08 +08:00

8 lines
181 B
VimL

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