Created
December 13, 2012 17:55
-
-
Save thefotios/4278287 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function! gem_gist#upload(file, private, open, description, ...) | |
if ! ( executable('gist') || executable('jist') ) | |
echoerr "This command requires gist gem. Please do `gem install gist.` or `gem install jist`" | |
return | |
endif | |
if filereadable(a:file) | |
if executable('gist') | |
let cmd = join([ | |
\ 'gist', | |
\ a:file, | |
\ (a:private ? '--private' : '--no-private'), | |
\ '--description', shellescape(a:description), | |
\ (a:open ==# '!' ? '--open' : '--no-open') | |
\ ], ' ') | |
elseif executable('jist') | |
let cmd = join([ | |
\ 'jist', | |
\ a:file, | |
\ (a:private ? '' : '--public'), | |
\ '--description', shellescape(a:description), | |
\ (a:open ==# '!' ? '--open' : '') | |
\ ], ' ') | |
endif | |
let result = '' | |
try | |
let result = vimproc#system(cmd) | |
catch | |
let result = system(cmd) | |
finally | |
echo result | |
endtry | |
endif | |
endfunction |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment