From d58a18b8edd4e42be0456454933ac266c230d97e Mon Sep 17 00:00:00 2001 From: w0rp Date: Sat, 11 Mar 2017 16:47:32 +0000 Subject: #277 #318 Support all same-directory includes for gcc and clang --- ale_linters/cpp/gcc.vim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ale_linters/cpp/gcc.vim') diff --git a/ale_linters/cpp/gcc.vim b/ale_linters/cpp/gcc.vim index 200a25c1..ad1b93b7 100644 --- a/ale_linters/cpp/gcc.vim +++ b/ale_linters/cpp/gcc.vim @@ -16,9 +16,11 @@ if !exists('g:ale_cpp_gcc_options') endif function! ale_linters#cpp#gcc#GetCommand(buffer) abort + " -iquote with the directory the file is in makes #include work for + " headers in the same directory. return 'gcc -S -x c++ -fsyntax-only ' - \ . g:ale_cpp_gcc_options . ' -' - + \ . '-iquote ' . fnameescape(fnamemodify(bufname(a:buffer), ':p:h')) + \ . ' ' . g:ale_cpp_gcc_options . ' -' endfunction call ale#linter#Define('cpp', { -- cgit v1.2.3