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 / unix / vim-6.2.tar.bz2 / vim-6.2.tar / vim62 / runtime / ftplugin / dtd.vim < prev    next >
Encoding:
Text File  |  2003-04-16  |  636 b   |  22 lines

  1. " Vim filetype plugin file
  2. " Language:    dtd
  3. " Maintainer:    Dan Sharp <dwsharp at hotmail dot com>
  4. " Last Changed: 2003 Apr 16
  5. " URL:        http://mywebpage.netscape.com/sharppeople/vim/ftplugin
  6.  
  7. if exists("b:did_ftplugin") | finish | endif
  8. let b:did_ftplugin = 1
  9.  
  10. setlocal commentstring=<!--%s-->
  11.  
  12. if exists("loaded_matchit") && !exists("b:match_words")
  13.     let b:match_words = '<!--:-->,<!:>'
  14. endif
  15.  
  16. " Change the :browse e filter to primarily show Java-related files.
  17. if has("gui_win32") && !exists("b:browsefilter")
  18.     let  b:browsefilter="DTD Files (*.dtd)\t*.dtd\n" .
  19.         \    "XML Files (*.xml)\t*.xml\n" .
  20.         \    "All Files (*.*)\t*.*\n"
  21. endif
  22.