Complain when shellescape is used instead of ale#Escape

This commit is contained in:
w0rp
2017-05-15 20:21:18 +01:00
parent 113f53a5d2
commit fa3a4b3ba2
2 changed files with 5 additions and 2 deletions

View File

@@ -125,12 +125,13 @@ function! ale#Var(buffer, variable_name) abort
endfunction
" Escape a string suitably for each platform.
" shellescape() does not work on Windows.
" shellescape does not work on Windows.
function! ale#Escape(str) abort
if fnamemodify(&shell, ':t') ==? 'cmd.exe'
" FIXME: Fix shell escaping for Windows.
return fnameescape(a:str)
else
return shellescape(a:str)
" An extra space is used here to disable the custom-checks.
return shellescape (a:str)
endif
endfunction