summaryrefslogblamecommitdiffstats
path: root/autoload/elm/io.vim
blob: 509a8f6a8ce0a5781baf9f05a3eb6de61a336231 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                            
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'elm') == -1
  
" System IO

" Craft a system command and run it, returning the output.
function! elm#io#system(program, args)
  let cmd ="which " . a:program . " && " . a:program . " " . a:args
  return system(cmd)
endfunction


endif