From: Konfekt Date: Wed, 29 Oct 2025 20:11:57 +0000 (+0000) Subject: runtime(compiler): Fix escaping in Windows shell command for tombi X-Git-Tag: v9.1.1888~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=14e7203713567761c37be3bf182e5669e11041e1;p=thirdparty%2Fvim.git runtime(compiler): Fix escaping in Windows shell command for tombi As observed by Doug Kearns related: #18590 closes: #18661 Signed-off-by: Konfekt Signed-off-by: Christian Brabandt --- diff --git a/runtime/compiler/tombi.vim b/runtime/compiler/tombi.vim index bab95ba24c..1bf00044ec 100644 --- a/runtime/compiler/tombi.vim +++ b/runtime/compiler/tombi.vim @@ -44,7 +44,7 @@ if s:tombi_nocolor if &shell =~# '\v<%(cmd|cmd)>' CompilerSet makeprg=set\ NO_COLOR=1\ &&\ tombi\ lint elseif &shell =~# '\v<%(powershell|pwsh)>' - CompilerSet makeprg=$env:NO_COLOR="1";\ tombi\ lint + CompilerSet makeprg=$env:NO_COLOR=\"1\";\ tombi\ lint else echoerr "tombi compiler: Unsupported shell for Windows" endif