Changes between Version 57 and Version 58 of UsingVimWithDjango


Ignore:
Timestamp:
Aug 22, 2012, 4:57:35 AM (12 years ago)
Author:
mariuz
Comment:

added Syntastic

Legend:

Unmodified
Added
Removed
Modified
  • UsingVimWithDjango

    v57 v58  
    126126=== Pyflakes ===
    127127
     128Deprecated and it will be replaced by Syntastic.
    128129The [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.
    129130
    130131This 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.
     132
     133
     134=== Syntastic ===
     135
     136[https://github.com/scrooloose/syntastic Syntastic] is a syntax checking plugin that runs files through external syntax checkers and displays any resulting errors to the user. This can be done on demand, or automatically as files are saved. If syntax errors are detected, the user is notified and is happy because they didn't have to compile their code or execute their script to find them.
     137
    131138
    132139== Vim/IDE ==
Back to Top