ftplugof.vim 353 B

12345678910111213141516
  1. vim9script
  2. # Vim support file to switch off loading plugins for file types
  3. #
  4. # Maintainer: Bram Moolenaar <Bram@vim.org>
  5. # Last Change: 2022 Feb 09
  6. if exists("g:did_load_ftplugin")
  7. unlet g: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