Skip to content

drgarcia1986/python-compilers.vim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

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

About

Simple python compilers for VIM

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published