2 " Maintainer: Sergey Matveev <stargrave@stargrave.org>
3 " License: GNU General Public License version 3 of the License or later
5 " Call pycodestyle utility and fill quickfix window with its results.
7 sign define P8 text=P8 texthl=Error
9 set makeprg=PATH=$PATH\ pycodestyle\ --select=E,W\ %
13 for item in getqflist()
14 execute(':sign place '.l:id.' name=P8 line='.l:item.lnum.' buffer='.l:item.bufnr)
21 map <F5> :call <SID>pep8()<CR>