view runtime/ftplugof.vim @ 20225:eaaee0dfa435 v8.2.0668

patch 8.2.0668: compiler warning for int/size_t usage Commit: https://github.com/vim/vim/commit/7f6f56f43c48f0b7288a4edd12b59fa7335f01d3 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 30 20:21:43 2020 +0200 patch 8.2.0668: compiler warning for int/size_t usage Problem: Compiler warning for int/size_t usage. Solution: Change "int" to "size_t". (Mike Williams)
author Bram Moolenaar <Bram@vim.org>
date Thu, 30 Apr 2020 20:30: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