Changes between Version 9 and Version 10 of UsingVimWithDjango


Ignore:
Timestamp:
Jan 12, 2006, 9:38:42 PM (18 years ago)
Author:
WorldMaker
Comment:

Vim Modeline

Legend:

Unmodified
Added
Removed
Modified
  • UsingVimWithDjango

    v9 v10  
    22
    33This page is intended to be used as a collection of hints for using the Vim editor with Django.
     4
     5== Vim Modeline ==
     6To 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
    414
    515== [http://www.vim.org/scripts/script.php?script_id=1318 SnippetsEmu] ==
Back to Top