summaryrefslogtreecommitdiff
path: root/ale_linters/c/clang.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/c/clang.vim')
-rw-r--r--ale_linters/c/clang.vim11
1 files changed, 10 insertions, 1 deletions
diff --git a/ale_linters/c/clang.vim b/ale_linters/c/clang.vim
index 681101fc..84c105de 100644
--- a/ale_linters/c/clang.vim
+++ b/ale_linters/c/clang.vim
@@ -6,13 +6,22 @@ call ale#Set('c_clang_options', '-std=c11 -Wall')
function! ale_linters#c#clang#GetCommand(buffer, output) abort
let l:cflags = ale#c#GetCFlags(a:buffer, a:output)
+ let l:ale_flags = ale#Var(a:buffer, 'c_clang_options')
+
+ if l:cflags =~# '-std='
+ let l:ale_flags = substitute(
+ \ l:ale_flags,
+ \ '-std=\(c\|gnu\)[0-9]\{2\}',
+ \ '',
+ \ 'g')
+ endif
" -iquote with the directory the file is in makes #include work for
" headers in the same directory.
return '%e -S -x c -fsyntax-only'
\ . ' -iquote ' . ale#Escape(fnamemodify(bufname(a:buffer), ':p:h'))
\ . ale#Pad(l:cflags)
- \ . ale#Pad(ale#Var(a:buffer, 'c_clang_options')) . ' -'
+ \ . ale#Pad(l:ale_flags) . ' -'
endfunction
call ale#linter#Define('c', {