Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 919 Bytes

README.md

File metadata and controls

37 lines (30 loc) · 919 Bytes

python-compilers.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

:compiler flake8
:make

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