A Vim plugin for checking Python code on the fly.
PyFlakes catches common Python errors like mistyping a variable name or accessing a local before it is bound, and also gives warnings for things like unused imports.
pyflakes-vim uses the output from PyFlakes to highlight errors in your code. To locate errors quickly, use quickfix_ commands like :cc.
Make sure to check vim.org_ for the latest updates.
.. _pyflakes.vim: http://www.vim.org/scripts/script.php?script_id=2441 .. _vim.org: http://www.vim.org/scripts/script.php?script_id=2441 .. _quickfix: http://vimdoc.sourceforge.net/htmldoc/quickfix.html#quickfix
pyflakes-vim is officially deprecated!
The must-have features of pyflakes-vim have been merged into Syntastic, which has a plugin-based syntax checking backend. This means you can check many different languages on the fly. I recommend using Syntastic unless you're mostly just editing Python.
.. _Syntastic: https://github.com/scrooloose/syntastic
Make sure your .vimrc
has::
filetype on " enables filetype detection filetype plugin on " enables filetype specific plugins
Download the latest release_.
If you're using pathogen_, unzip the contents of pyflakes-vim.zip
into
its own bundle directory, i.e. into ~/.vim/bundle/pyflakes-vim/
.
Otherwise unzip pyflakes.vim
and the pyflakes
directory into
~/.vim/ftplugin/python
(or somewhere similar on your
runtime path
_ that will be sourced for Python files).
.. _release: http://www.vim.org/scripts/script.php?script_id=2441 .. _pathogen: http://www.vim.org/scripts/script.php?script_id=2332 .. _runtime path: http://vimdoc.sourceforge.net/htmldoc/options.html#'runtimepath'
If you're running pyflakes-vim "from source," you'll need the PyFlakes library on your PYTHONPATH somewhere. (It is included in the vim.org zipfile.) I recommend getting the github.com/pyflakes PyFlakes_ fork, which retains column number information, giving more specific error locations.
.. _vim.org: http://www.vim.org/scripts/script.php?script_id=2441 .. _PyFlakes: http://github.com/pyflakes/pyflakes
::
git clone --recursive git://github.com/kevinw/pyflakes-vim.git
or use the PyFlakes_ submodule::
git clone git://github.com/kevinw/pyflakes-vim.git cd pyflakes-vim git submodule init git submodule update
Set this option in your vimrc file to disable quickfix support::
let g:pyflakes_use_quickfix = 0
The value is set to 1 by default.
.. _signs: http://vimdoc.sourceforge.net/htmldoc/sign.html
Please see http://www.vim.org/scripts/script.php?script_id=2441 for a history of all changes.
Just a test for github.