diff options
author | w0rp <devw0rp@gmail.com> | 2017-03-11 16:47:32 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-03-11 16:48:49 +0000 |
commit | d58a18b8edd4e42be0456454933ac266c230d97e (patch) | |
tree | 389c84eab5a9ce33c09073f1f488d55f7198a666 /ale_linters/c/clang.vim | |
parent | c2ceb9e085c8dd849dee57bdd91b2500fa7b528f (diff) | |
download | ale-d58a18b8edd4e42be0456454933ac266c230d97e.zip |
#277 #318 Support all same-directory includes for gcc and clang
Diffstat (limited to 'ale_linters/c/clang.vim')
-rw-r--r-- | ale_linters/c/clang.vim | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/ale_linters/c/clang.vim b/ale_linters/c/clang.vim index 205dd922..603e2b75 100644 --- a/ale_linters/c/clang.vim +++ b/ale_linters/c/clang.vim @@ -9,12 +9,18 @@ if !exists('g:ale_c_clang_options') let g:ale_c_clang_options = '-std=c11 -Wall' endif +function! ale_linters#c#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 ' . fnameescape(fnamemodify(bufname(a:buffer), ':p:h')) + \ . ' ' . g:ale_c_clang_options . ' -' +endfunction + call ale#linter#Define('c', { \ 'name': 'clang', \ 'output_stream': 'stderr', \ 'executable': 'clang', -\ 'command': 'clang -S -x c -fsyntax-only ' -\ . g:ale_c_clang_options -\ . ' -', +\ 'command_callback': 'ale_linters#c#clang#GetCommand', \ 'callback': 'ale#handlers#HandleGCCFormat', \}) |