Before: Save g:ale_c_parse_makefile let g:ale_c_parse_makefile = 0 call ale#assert#SetUpLinterTest('cpp', 'gcc') let b:command_tail = ' -S -x c++' \ . ' -o ' . (has('win32') ? 'nul': '/dev/null') \ . ' -iquote ' . ale#Escape(getcwd()) \ . ' -std=c++14 -Wall -' After: unlet! b:command_tail call ale#assert#TearDownLinterTest() Execute(The executable should be configurable): AssertLinter 'gcc', ale#Escape('gcc') . b:command_tail let b:ale_cpp_gcc_executable = 'foobar' AssertLinter 'foobar', ale#Escape('foobar') . b:command_tail