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 / php.vim < prev    next >
Encoding:
Text File  |  2002-11-26  |  517 b   |  17 lines

  1. " Vim filetype plugin file
  2. " Language:    php
  3. " Maintainer:    Dan Sharp <dwsharp at hotmail dot com>
  4. " Last Changed: 2002 Nov 26
  5. " URL:        http://mywebpage.netscape.com/sharppeople/vim/ftplugin
  6.  
  7. if exists("b:did_ftplugin") | finish | endif
  8.  
  9. runtime! ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim
  10.  
  11. let b:did_ftplugin = 1
  12.  
  13. " Change the :browse e filter to primarily show PHP-related files.
  14. if has("gui_win32") && exists("b:browsefilter")
  15.     let  b:browsefilter="PHP Files (*.php)\t*.php\n" . b:browsefilter
  16. endif
  17.