view runtime/ftplugof.vim @ 11058:1448c8bd818f v8.0.0418

patch 8.0.0418: ASAN logs are disabled commit https://github.com/vim/vim/commit/a382868115e8f8e44c6a85bb9587f8eb31fa0033 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 5 14:56:07 2017 +0100 patch 8.0.0418: ASAN logs are disabled Problem: ASAN logs are disabled and don't cause a failure. Solution: Enable ASAN logs and fail if not empty. (James McCoy, closes #1425)
author Christian Brabandt <cb@256bit.org>
date Sun, 05 Mar 2017 15:00:04 +0100
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