mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/ale/ale_linters/cpp/clang.vim

28 lines
1.0 KiB
VimL
Raw Normal View History

" Author: Tomota Nakamura <https://github.com/tomotanakamura>
" Description: clang linter for cpp files
call ale#Set('cpp_clang_executable', 'clang++')
call ale#Set('cpp_clang_options', '-std=c++14 -Wall')
function! ale_linters#cpp#clang#GetCommand(buffer, output) abort
let l:cflags = ale#c#GetCFlags(a:buffer, a:output)
" -iquote with the directory the file is in makes #include work for
" headers in the same directory.
2018-08-25 12:13:42 -04:00
return '%e -S -x c++ -fsyntax-only'
2018-07-30 17:18:16 -04:00
\ . ' -iquote ' . ale#Escape(fnamemodify(bufname(a:buffer), ':p:h'))
\ . ale#Pad(l:cflags)
\ . ale#Pad(ale#Var(a:buffer, 'cpp_clang_options')) . ' -'
endfunction
call ale#linter#Define('cpp', {
\ 'name': 'clang',
\ 'output_stream': 'stderr',
2019-03-08 06:04:56 -05:00
\ 'executable': {b -> ale#Var(b, 'cpp_clang_executable')},
\ 'command_chain': [
\ {'callback': 'ale#c#GetMakeCommand', 'output_stream': 'stdout'},
\ {'callback': 'ale_linters#cpp#clang#GetCommand'},
\ ],
2018-07-30 17:18:16 -04:00
\ 'callback': 'ale#handlers#gcc#HandleGCCFormatWithIncludes',
\})