view runtime/ftplugof.vim @ 8198:7c21dd028e0f v7.4.1392

commit https://github.com/vim/vim/commit/2cd5bb2505acc001933e97cf788f473f8db60895 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 22 22:05:32 2016 +0100 patch 7.4.1392 Problem: Some tests fail for Win32 console version. Solution: Move the tests to SCRIPTS_MORE2. Pass VIMRUNTIME. (Christian Brabandt)
author Christian Brabandt <cb@256bit.org>
date Mon, 22 Feb 2016 22:15:03 +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