view runtime/ftplugof.vim @ 14671:09b803bdd7ab v8.1.0348

patch 8.1.0348: on Travis the slowest build is run last commit https://github.com/vim/vim/commit/e67a7d690a53690eb3c99a1ca7a199e8da159146 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 5 22:25:50 2018 +0200 patch 8.1.0348: on Travis the slowest build is run last Problem: On Travis the slowest build is run last. (Dominique Pelle) Solution: Reorder the build entries.
author Christian Brabandt <cb@256bit.org>
date Wed, 05 Sep 2018 22:30:07 +0200
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