diff options
Diffstat (limited to 'ale_linters/cpp/clang.vim')
-rw-r--r-- | ale_linters/cpp/clang.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/cpp/clang.vim b/ale_linters/cpp/clang.vim index bd4d26ef..430903fb 100644 --- a/ale_linters/cpp/clang.vim +++ b/ale_linters/cpp/clang.vim @@ -10,7 +10,7 @@ function! ale_linters#cpp#clang#GetCommand(buffer) abort " -iquote with the directory the file is in makes #include work for " headers in the same directory. return 'clang++ -S -x c++ -fsyntax-only ' - \ . '-iquote ' . shellescape(fnamemodify(bufname(a:buffer), ':p:h')) + \ . '-iquote ' . ale#Escape(fnamemodify(bufname(a:buffer), ':p:h')) \ . ' ' . ale#Var(a:buffer, 'cpp_clang_options') . ' -' endfunction |