view runtime/ftplugof.vim @ 7517:9d67399f49c6 v7.4.1060

commit https://github.com/vim/vim/commit/6602af7fe069246dbcf419c3e904a78b60e7d4dc Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 7 22:01:01 2016 +0100 patch 7.4.1060 Problem: Instructions for writing tests are outdated. Solution: Mention Make_all.mak. Add steps for new style tests.
author Christian Brabandt <cb@256bit.org>
date Thu, 07 Jan 2016 22:15:05 +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