view runtime/ftplugof.vim @ 17423:ae11ab022b02 v8.1.1710

patch 8.1.1710: Coverity found dead code commit https://github.com/vim/vim/commit/4a0a161a9bdc074498b85e1dd6bb2aab62a53aee Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jul 17 22:00:19 2019 +0200 patch 8.1.1710: Coverity found dead code Problem: Coverity found dead code. Solution: Remove merging of listener changes.
author Bram Moolenaar <Bram@vim.org>
date Wed, 17 Jul 2019 22:15: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