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 / ftplugof.vim < prev    next >
Encoding:
Text File  |  2012-05-31  |  337 b   |  14 lines

  1. " Vim support file to switch off loading plugins for file types
  2. "
  3. " Maintainer:    Bram Moolenaar <Bram@vim.org>
  4. " Last Change:    2011 Oct 20
  5.  
  6. if exists("did_load_ftplugin")
  7.   unlet did_load_ftplugin
  8. endif
  9.  
  10. " Remove all autocommands in the filetypeplugin group, if any exist.
  11. if exists("#filetypeplugin")
  12.   silent! au! filetypeplugin *
  13. endif
  14.