view runtime/ftplugof.vim @ 27014:b861ae62860d v8.2.4036

patch 8.2.4036: Vim9: script test file is getting too long Commit: https://github.com/vim/vim/commit/d844862bcec5db210116847a67de93578ba781d7 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 7 21:39:52 2022 +0000 patch 8.2.4036: Vim9: script test file is getting too long Problem: Vim9: script test file is getting too long. Solution: Split the import/export functionality to a separate file.
author Bram Moolenaar <Bram@vim.org>
date Fri, 07 Jan 2022 22:45:02 +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