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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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