Merge pull request #4 from ShinKage/path-escape
Escape the paths passed to idris2
This commit is contained in:
commit
b057b734aa
1 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@ endfunction
|
||||||
function! s:IdrisCommand(...)
|
function! s:IdrisCommand(...)
|
||||||
let idriscmd = shellescape(join(a:000))
|
let idriscmd = shellescape(join(a:000))
|
||||||
" echo("idris2 " . expand ('%:p') . " --client " . idriscmd)
|
" echo("idris2 " . expand ('%:p') . " --client " . idriscmd)
|
||||||
return system("idris2 --find-ipkg " . expand ('%:p') . " --client " . idriscmd)
|
return system("idris2 --find-ipkg " . shellescape(expand('%:p')) . " --client " . idriscmd)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! IdrisDocFold(lineNum)
|
function! IdrisDocFold(lineNum)
|
||||||
|
@ -94,7 +94,7 @@ endfunction
|
||||||
|
|
||||||
function! IdrisReload(q)
|
function! IdrisReload(q)
|
||||||
w
|
w
|
||||||
let tc = system("idris2 --find-ipkg " . expand ('%:p') . " --client ''")
|
let tc = system("idris2 --find-ipkg " . shellescape(expand('%:p')) . " --client ''")
|
||||||
if (! (tc is ""))
|
if (! (tc is ""))
|
||||||
call IWrite(tc)
|
call IWrite(tc)
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue