From d49b06e0301bb526465ae1c058583114bf619cdf Mon Sep 17 00:00:00 2001 From: jhlink Date: Thu, 30 Jul 2020 09:29:33 -0400 Subject: fix: Find proj_options in same dir for astyle --- autoload/ale/fixers/astyle.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'autoload') diff --git a/autoload/ale/fixers/astyle.vim b/autoload/ale/fixers/astyle.vim index 04e4b69a..33a3c166 100644 --- a/autoload/ale/fixers/astyle.vim +++ b/autoload/ale/fixers/astyle.vim @@ -49,7 +49,7 @@ endfunction function! ale#fixers#astyle#Fix(buffer) abort let l:executable = ale#fixers#astyle#Var(a:buffer, 'executable') let l:proj_options = ale#fixers#astyle#FindProjectOptions(a:buffer) - let l:command = ' --stdin=' + let l:command = ' --stdin=''' . expand('#' . a:buffer) . '''' return { \ 'command': ale#Escape(l:executable) -- cgit v1.2.3