view runtime/ftplugof.vim @ 23963:29b58c9d9df1

Added tag v8.2.2523 for changeset 436e702af70cd17df84b16af6cd83ca3c36d0a32
author Bram Moolenaar <Bram@vim.org>
date Wed, 17 Feb 2021 12:30:06 +0100
parents 49b08c9b9f5b
children 179c118424a6
line wrap: on
line source

" Vim support file to switch off loading plugins for file types
"
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2011 Oct 20

if exists("did_load_ftplugin")
  unlet did_load_ftplugin
endif

" Remove all autocommands in the filetypeplugin group, if any exist.
if exists("#filetypeplugin")
  silent! au! filetypeplugin *
endif