view runtime/ftplugof.vim @ 11311:be499043ca70 v8.0.0541

patch 8.0.0541: compiler warning on MS-Windows commit https://github.com/vim/vim/commit/04000560ca81cc2608b291d0990e661b41ca8c68 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 3 21:35:42 2017 +0200 patch 8.0.0541: compiler warning on MS-Windows Problem: Compiler warning on MS-Windows. Solution: Add a type cast. (Mike Williams)
author Christian Brabandt <cb@256bit.org>
date Mon, 03 Apr 2017 21:45:04 +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