diff options
author | w0rp <devw0rp@gmail.com> | 2018-02-18 10:06:40 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-02-18 10:06:40 +0000 |
commit | 5915a0ee39ba04a5a4118d5f71766912a6b87fe9 (patch) | |
tree | 09bd86218075d8de107f591ae432acae17d29b1a /ale_linters | |
parent | 608b6dafd4cf6399f87670a9edf291b1261763d0 (diff) | |
download | ale-5915a0ee39ba04a5a4118d5f71766912a6b87fe9.zip |
Escape the ponyc executable
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/pony/ponyc.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/pony/ponyc.vim b/ale_linters/pony/ponyc.vim index 4120df51..b3329053 100644 --- a/ale_linters/pony/ponyc.vim +++ b/ale_linters/pony/ponyc.vim @@ -8,7 +8,7 @@ function! ale_linters#pony#ponyc#GetExecutable(buffer) abort endfunction function! ale_linters#pony#ponyc#GetCommand(buffer) abort - return ale_linters#pony#ponyc#GetExecutable(a:buffer) + return ale#Escape(ale_linters#pony#ponyc#GetExecutable(a:buffer)) \ . ' ' . ale#Var(a:buffer, 'pony_ponyc_options') endfunction |