1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 11:00:05 +08:00
SpaceVim/bundle/github.vim/autoload/github/api.vim

8 lines
181 B
VimL
Raw Normal View History

2023-03-31 13:32:08 +08:00
function! github#api#authorize() abort
if !empty(g:githubapi_token)
return ['--header', "Authorization: Bearer " . g:githubapi_token]
else
return []
endif
endfunction