view runtime/ftplugof.vim @ 19089:9185ddf4cded v8.2.0105

patch 8.2.0105: Vim license not easy to find on github Commit: https://github.com/vim/vim/commit/c838626fea42ed5924ee6084d87d1b37b2d7b0ff Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 8 21:43:02 2020 +0100 patch 8.2.0105: Vim license not easy to find on github Problem: Vim license not easy to find on github. Solution: Add a separate LICENCE file. (closes https://github.com/vim/vim/issues/5458)
author Bram Moolenaar <Bram@vim.org>
date Wed, 08 Jan 2020 21:45:04 +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