ftplugof.vim 337 B

1234567891011121314
  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. if exists("did_load_ftplugin")
  6. unlet did_load_ftplugin
  7. endif
  8. " Remove all autocommands in the filetypeplugin group, if any exist.
  9. if exists("#filetypeplugin")
  10. silent! au! filetypeplugin *
  11. endif