view runtime/ftplugof.vim @ 18303:86887d3fd6f7 v8.1.2146

patch 8.1.2146: build failure Commit: https://github.com/vim/vim/commit/1e7b52ad8a5e34b9e7a2d12a09765d76d446cd5a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 13 16:59:08 2019 +0200 patch 8.1.2146: build failure Problem: Build failure. Solution: Include omitted changed file.
author Bram Moolenaar <Bram@vim.org>
date Sun, 13 Oct 2019 17:00:03 +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