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