Changes between Version 47 and Version 48 of UsingVimWithDjango


Ignore:
Timestamp:
May 23, 2010, 8:45:33 AM (15 years ago)
Author:
Martin Winkler
Comment:

added the pyflakes plugin

Legend:

Unmodified
Added
Removed
Modified
  • UsingVimWithDjango

    v47 v48  
    124124}}}
    125125
     126=== Pyflakes ===
     127
     128The [http://www.vim.org/scripts/script.php?script_id=2441 pyflakes] plugin highlights common Python errors like misspelling a variable name on the fly. It also warns about unused imports, redefined functions, etc.
     129
     130This plugin is fast enough that it registers itself with vim hooks for leaving insert mode and saving a buffer, so that the warnings are always up to date.
     131
    126132== Vim/IDE ==
    127133=== PIDA ===
Back to Top