Vim Tips Wiki
Advertisement

This script does not work with my pylint:

$ pylint --version pylint 0.24.0, astng 0.22.0, common 0.56.0 Python 2.7.2 (default, Jun 29 2011, 11:10:00) [GCC 4.6.1]

Apply the following path to fix it:

$ diff pylint.vim.orig pylint.vim 69c69 < CompilerSet makeprg=(echo\ '[%]';\ pylint\ -r\ y\ %) --- > CompilerSet makeprg=(echo\ '[%]';\ pylint\ -r\ y\ --output-format=parseable\ %) 74c74 < CompilerSet efm=%+P[%f],%t:\ %#%l:%m,%Z,%+IYour\ code%m,%Z,%-G%.%# --- > CompilerSet efm=%f:%l:\ [%t]%m,%f:%l:%m

Advertisement