mirror of
https://github.com/gryf/.vim.git
synced 2026-04-24 04:41:24 +02:00
73d7af783c
Added Pep8 command clean up in vimrc and ftplugin/python/common
13 lines
363 B
VimL
13 lines
363 B
VimL
" Vim compiler file for Python
|
|
" Compiler: Static code checking tool for Python
|
|
" Maintainer: Roman 'gryf' Dobosz
|
|
" Last Change: 2010-09-12
|
|
" Version: 1.0
|
|
if exists("current_compiler")
|
|
finish
|
|
endif
|
|
|
|
let current_compiler = "pylint"
|
|
CompilerSet makeprg=$HOME/.vim/bin/pylint_parseable.py\ %
|
|
CompilerSet efm=%f:\ %t:\ %l:\ %c:\ %m,%f:\ %t:\ %l:\ %m
|