2016-10-31 05:32:39 +00:00
|
|
|
" Author: Masahiro H https://github.com/mshr-h
|
|
|
|
" Description: clang linter for c files
|
|
|
|
|
2017-07-16 20:37:10 +00:00
|
|
|
call ale#Set('c_clang_executable', 'clang')
|
|
|
|
call ale#Set('c_clang_options', '-std=c11 -Wall')
|
|
|
|
|
2018-03-20 20:49:31 +00:00
|
|
|
function! ale_linters#c#clang#GetCommand(buffer, output) abort
|
2018-03-21 19:44:35 +00:00
|
|
|
let l:cflags = ale#c#GetCFlags(a:buffer, a:output)
|
2017-05-31 19:01:40 +00:00
|
|
|
|
2017-03-11 16:47:32 +00:00
|
|
|
" -iquote with the directory the file is in makes #include work for
|
|
|
|
" headers in the same directory.
|
2018-08-02 22:44:12 +00:00
|
|
|
return '%e -S -x c -fsyntax-only'
|
2018-07-29 18:24:19 +00:00
|
|
|
\ . ' -iquote ' . ale#Escape(fnamemodify(bufname(a:buffer), ':p:h'))
|
|
|
|
\ . ale#Pad(l:cflags)
|
|
|
|
\ . ale#Pad(ale#Var(a:buffer, 'c_clang_options')) . ' -'
|
2017-03-11 16:47:32 +00:00
|
|
|
endfunction
|
|
|
|
|
2016-10-31 05:32:39 +00:00
|
|
|
call ale#linter#Define('c', {
|
|
|
|
\ 'name': 'clang',
|
|
|
|
\ 'output_stream': 'stderr',
|
2018-08-02 22:44:12 +00:00
|
|
|
\ 'executable_callback': ale#VarFunc('c_clang_executable'),
|
2018-03-20 20:49:31 +00:00
|
|
|
\ 'command_chain': [
|
2018-03-21 19:44:35 +00:00
|
|
|
\ {'callback': 'ale#c#GetMakeCommand', 'output_stream': 'stdout'},
|
2018-03-20 20:49:31 +00:00
|
|
|
\ {'callback': 'ale_linters#c#clang#GetCommand'}
|
|
|
|
\ ],
|
2018-07-30 19:09:43 +00:00
|
|
|
\ 'callback': 'ale#handlers#gcc#HandleGCCFormatWithIncludes',
|
2016-10-31 05:32:39 +00:00
|
|
|
\})
|