Move ale#handlers#c functions into ale#c

This commit is contained in:
w0rp
2017-06-25 20:34:23 +01:00
parent 7f6e5dc65b
commit 8b557f346c
6 changed files with 69 additions and 72 deletions

View File

@@ -7,13 +7,13 @@ if !exists('g:ale_cpp_clang_options')
endif
function! ale_linters#cpp#clang#GetCommand(buffer) abort
let l:paths = ale#handlers#c#FindLocalHeaderPaths(a:buffer)
let l:paths = ale#c#FindLocalHeaderPaths(a:buffer)
" -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 ' . ale#Escape(fnamemodify(bufname(a:buffer), ':p:h')) . ' '
\ . ale#handlers#c#IncludeOptions(l:paths)
\ . ale#c#IncludeOptions(l:paths)
\ . ale#Var(a:buffer, 'cpp_clang_options') . ' -'
endfunction

View File

@@ -17,13 +17,13 @@ if !exists('g:ale_cpp_gcc_options')
endif
function! ale_linters#cpp#gcc#GetCommand(buffer) abort
let l:paths = ale#handlers#c#FindLocalHeaderPaths(a:buffer)
let l:paths = ale#c#FindLocalHeaderPaths(a:buffer)
" -iquote with the directory the file is in makes #include work for
" headers in the same directory.
return 'gcc -S -x c++ -fsyntax-only '
\ . '-iquote ' . ale#Escape(fnamemodify(bufname(a:buffer), ':p:h')) . ' '
\ . ale#handlers#c#IncludeOptions(l:paths)
\ . ale#c#IncludeOptions(l:paths)
\ . ale#Var(a:buffer, 'cpp_gcc_options') . ' -'
endfunction