view runtime/ftplugof.vim @ 7908:a343a738010e v7.4.1250

commit https://github.com/vim/vim/commit/2212c4154cde0641225782cc4dd1a6483ff2ff35 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 3 21:45:27 2016 +0100 patch 7.4.1250 Problem: Running tests in shadow directory fails. Solution: Also link testdir/*.py
author Christian Brabandt <cb@256bit.org>
date Wed, 03 Feb 2016 22:00: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