view runtime/ftplugof.vim @ 8188:9531717f0694 v7.4.1387

commit https://github.com/vim/vim/commit/8f8ae40ce45822c51c7f3cc58d7c23990f0ecc3d Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 22 20:07:49 2016 +0100 patch 7.4.1387 Problem: Win16 docs still referenced. Solution: Remove Win16 files from the docs Makefile. (Kenichi Ito)
author Christian Brabandt <cb@256bit.org>
date Mon, 22 Feb 2016 20:15: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