diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-09-14 11:41:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-14 11:41:47 +0100 |
commit | f380d8508e2e8c80bb1d1ed6f934b953f1c37bc2 (patch) | |
tree | af0bb8cc788c0d72a5dfb683fe82ff6524351343 /ale_linters | |
parent | 78af99c2566ef8fed443ce253e0de9323b9e5043 (diff) | |
parent | c48106f48450840c4d098e3d107c48102e219669 (diff) | |
download | ale-f380d8508e2e8c80bb1d1ed6f934b953f1c37bc2.zip |
Merge pull request #1919 from saschagrunert/patch-1
Change PCRE escape to simple escape
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/go/golangci_lint.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/go/golangci_lint.vim b/ale_linters/go/golangci_lint.vim index b44a6239..dd9a3c64 100644 --- a/ale_linters/go/golangci_lint.vim +++ b/ale_linters/go/golangci_lint.vim @@ -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 |