Skip to content

Instantly share code, notes, and snippets.

@thefotios
Created December 13, 2012 17:55
Show Gist options
  • Save thefotios/4278287 to your computer and use it in GitHub Desktop.
Save thefotios/4278287 to your computer and use it in GitHub Desktop.
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