This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 18bb52e3b126762f221a87101639ba5af91f141c
tree bc8ae7ddc0fde9d6a4b033b0a0e135d58f66dccc
parent 6ec1fbbce32876e315b370409ca55c97d232d125
tree bc8ae7ddc0fde9d6a4b033b0a0e135d58f66dccc
parent 6ec1fbbce32876e315b370409ca55c97d232d125
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Fri Nov 14 17:07:43 -0800 2008 | |
| |
README.rst | ||
| |
makerelease.py | ||
| |
pyflakes.vim |
README.rst
pyflakes-vim
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 the spots in your code where
Quick Installation
Make sure your .vimrc has:
filetype on " enables filetype detection filetype plugin on " enables filetype specific plugins
Download the latest release.
Unzip pyflakes.vim and the pyflakes directory into ~/.vim/after/ftplugin/python (or somewhere similar on your runtime path that will be sourced for Python files).
Installation
- I recommend getting my PyFlakes fork, which uses the _ast module new to Python 2.5, and is faster and more current than PyFlakes' old usage of the deprecated compiler module.
Hacking
git clone git://github.com/kevinw/pyflakes-vim.git cd pyflakes-vim git clone git://github.com/kevinw/pyflakes.git
TODO
- signs support (show warning and error icons to left of the buffer area)
- configuration variables
Changelog
- 0.1 - First release









