GitHub - drgarcia1986/python-compilers.vim: Simple python compilers for VIM

Just a python compilers for VIM

Installation

As usual, you can install it with your prefered VIM plugin manager (like Plug or Vundle). If you want to install it by yourself, just copy the compiler folder to your ~/.vim folder.

compilers

Usage

vim-dispatch integration

I strongly recommend you to use compilers with vim-dispatch. For example to run a asynchronous flake8 check in every buffer save set in your vimrc:

augroup python
    au!
    autocmd FileType python compiler flake8
    autocmd BufWrite *.py :Dispatch
augroup END