Changes between Version 9 and Version 10 of UsingVimWithDjango
- Timestamp:
- Jan 12, 2006, 9:38:42 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingVimWithDjango
v9 v10 2 2 3 3 This page is intended to be used as a collection of hints for using the Vim editor with Django. 4 5 == Vim Modeline == 6 To insure that all developers are using a standard tab format (as long as they are using Vim), you can add a Vim modeline (special comment) to your files, to set people in the same mode for that file. Example: 7 8 {{{ 9 # vim: ai ts=4 sts=4 et sw=4 10 }}} 11 12 [http://py.vaults.ca/~x/python_and_vim.html Tab Setting Reference for Python and Vim] 13 4 14 5 15 == [http://www.vim.org/scripts/script.php?script_id=1318 SnippetsEmu] ==