ftplugof.vim 403 B

123456789101112131415
  1. " Vim support file to switch off loading plugins for file types
  2. "
  3. " Maintainer: The Vim Project <https://github.com/vim/vim>
  4. " Last Change: 2023 Aug 10
  5. " Former Maintainer: Bram Moolenaar <Bram@vim.org>
  6. if exists("did_load_ftplugin")
  7. unlet did_load_ftplugin
  8. endif
  9. " Remove all autocommands in the filetypeplugin group, if any exist.
  10. if exists("#filetypeplugin")
  11. silent! au! filetypeplugin *
  12. endif