view runtime/ftplugof.vim @ 14768:64a63f48d8cd v8.1.0396

patch 8.1.0396: another compiler warning on 64-bit MS-Windows commit https://github.com/vim/vim/commit/42c63356d774bbfe91712197e8969f60de828a32 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 16 15:14:18 2018 +0200 patch 8.1.0396: another compiler warning on 64-bit MS-Windows Problem: Another compiler warning on 64-bit MS-Windows. Solution: Add type cast. (Mike Williams)
author Christian Brabandt <cb@256bit.org>
date Sun, 16 Sep 2018 15: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