Change PCRE escape to simple escape

This commit is contained in:
Sascha Grunert
2018-09-14 10:41:35 +02:00
committed by GitHub
parent 78af99c256
commit 96e25d471c

View File

@@ -18,7 +18,7 @@ function! ale_linters#go#golangci_lint#GetCommand(buffer) abort
return ale#path#BufferCdString(a:buffer)
\ . '%e run '
\ . ale#util#EscapePCRE(l:filename)
\ . ale#Escape(l:filename)
\ . ' ' . l:options
endfunction