view runtime/ftplugof.vim @ 17326:84b9e60ff459 v8.1.1662

patch 8.1.1662: cannot build uninstal.exe with some version of MinGW commit https://github.com/vim/vim/commit/e28cfb28126c07abd9e9ba04e36b3789433201b6 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 11 22:04:21 2019 +0200 patch 8.1.1662: cannot build uninstal.exe with some version of MinGW Problem: Cannot build uninstal.exe with some version of MinGW. Solution: Add -lole32. (Rene Nyffenegger, closes https://github.com/vim/vim/issues/4646)
author Bram Moolenaar <Bram@vim.org>
date Thu, 11 Jul 2019 22:15:05 +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