Changes between Version 57 and Version 58 of UsingVimWithDjango
- Timestamp:
- Aug 22, 2012, 4:57:35 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingVimWithDjango
v57 v58 126 126 === Pyflakes === 127 127 128 Deprecated and it will be replaced by Syntastic. 128 129 The [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 130 130 131 This 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 131 138 132 139 == Vim/IDE ==