diff options
author | w0rp <devw0rp@gmail.com> | 2020-08-28 19:50:36 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2020-08-28 19:50:36 +0100 |
commit | 7d4ce4e6aa960a6052a16d90322566d6f4fddb7c (patch) | |
tree | 0f191e0dff643cc4b53f6dbd5259fef028d7a0dd /ale_linters/c/cc.vim | |
parent | 3d5a2690ce707cbc9e71e8ed4d5d1955e4b26d65 (diff) | |
download | ale-7d4ce4e6aa960a6052a16d90322566d6f4fddb7c.zip |
Close #3325 - Apply new formatting where possible
Diffstat (limited to 'ale_linters/c/cc.vim')
-rw-r--r-- | ale_linters/c/cc.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/c/cc.vim b/ale_linters/c/cc.vim index 6d920ab0..5655fbf7 100644 --- a/ale_linters/c/cc.vim +++ b/ale_linters/c/cc.vim @@ -38,7 +38,7 @@ function! ale_linters#c#cc#GetCommand(buffer, output) abort " -fsyntax-only doesn't catch everything. return '%e -S -x c' \ . ' -o ' . g:ale#util#nul_file - \ . ' -iquote ' . ale#Escape(fnamemodify(bufname(a:buffer), ':p:h')) + \ . ' -iquote %s:h' \ . ale#Pad(l:cflags) \ . ale#Pad(l:ale_flags) . ' -' endfunction |