home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / runtime / ftplugin / htmldjango.vim < prev    next >
Encoding:
Text File  |  2010-08-14  |  331 b   |  14 lines

  1. " Vim filetype plugin file
  2. " Language:    Django HTML template
  3. " Maintainer:    Dave Hodder <dmh@dmh.org.uk>
  4. " Last Change:    2007 Jan 25
  5.  
  6. " Only use this filetype plugin when no other was loaded.
  7. if exists("b:did_ftplugin")
  8.   finish
  9. endif
  10.  
  11. " Use HTML and Django template ftplugins.
  12. runtime! ftplugin/html.vim
  13. runtime! ftplugin/django.vim
  14.