typescript: dont need to escape the space inside a string

This commit is contained in:
Martin Grenfell 2012-12-03 09:57:06 +00:00
parent 1b237eba14
commit d4e74d81d8

View File

@ -11,6 +11,6 @@ endif
function! SyntaxCheckers_typescript_GetLocList()
let makeprg = 'tsc ' . shellescape(expand("%")) . ' --out ' . syntastic#util#DevNull()
let errorformat = '%f\ %#(%l\,%c): %m'
let errorformat = '%f %#(%l\,%c): %m'
return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })
endfunction