view runtime/ftplugof.vim @ 17750:b27d06bd0fde v8.1.1872

patch 8.1.1872: when Vim exits because of a signal, VimLeave is not triggered commit https://github.com/vim/vim/commit/c7226684c82dde7eb6601e067ee2e9387e447903 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 17 16:33:23 2019 +0200 patch 8.1.1872: when Vim exits because of a signal, VimLeave is not triggered Problem: When Vim exits because of a signal, VimLeave is not triggered. (Daniel Hahler) Solution: Unblock autocommands when triggering VimLeave. (closes #4818)
author Bram Moolenaar <Bram@vim.org>
date Sat, 17 Aug 2019 16:45: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