mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:20:06 +08:00
8 lines
181 B
VimL
Vendored
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
|