view runtime/ftplugof.vim @ 24270:3564fd251bb6 v8.2.2676

patch 8.2.2676: missing error message Commit: https://github.com/vim/vim/commit/9ea7e55ab9eacbdcfde76627fdc070a9cb4d1d45 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 29 21:06:04 2021 +0200 patch 8.2.2676: missing error message Problem: Missing error message. Solution: Add new error message.
author Bram Moolenaar <Bram@vim.org>
date Mon, 29 Mar 2021 21:15:03 +0200
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