From: Sergey Matveev Date: Sat, 14 Dec 2019 11:35:52 +0000 (+0300) Subject: Vim 8.2 makeprg does not inherit PATH X-Git-Url: http://www.git.stargrave.org/?p=dotfiles.git;a=commitdiff_plain;h=12ba4a92d0732cfb2e74a982714882dbe3d3f347 Vim 8.2 makeprg does not inherit PATH --- diff --git a/vim/.vim/ftplugin/python/pep8.vim b/vim/.vim/ftplugin/python/pep8.vim index 5570eb6..7143e75 100644 --- a/vim/.vim/ftplugin/python/pep8.vim +++ b/vim/.vim/ftplugin/python/pep8.vim @@ -6,7 +6,7 @@ sign define P8 text=P8 texthl=Error function! s:pep8() - set makeprg=pycodestyle\ --select=E,W\ % + set makeprg=PATH=$PATH\ pycodestyle\ --select=E,W\ % silent make sign unplace * let l:id = 1