aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler/pyflakes.vim
blob: 727fbd767cde0aa14bcb19c2e702a80202d68ffe (plain) (blame)
1
2
3
4
5
6
7
8
9
" :compiler support for Python syntax checking with pyflakes
" <https://pypi.org/project/pyflakes/>
if exists('current_compiler') || &compatible || !has('patch-7.4.191')
  finish
endif
let current_compiler = 'pyflakes'

CompilerSet makeprg=pyflakes\ %:S
CompilerSet errorformat=%f:%l:%c:\ %m