view runtime/ftplugof.vim @ 24240:2194227d034a v8.2.2661

patch 8.2.2661: leaking memory when looping over a string Commit: https://github.com/vim/vim/commit/bb5d87c8504588be9c9d2fecc5b6455a2b2f6201 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 26 22:15:26 2021 +0100 patch 8.2.2661: leaking memory when looping over a string Problem: Leaking memory when looping over a string. Solution: Free the memory.
author Bram Moolenaar <Bram@vim.org>
date Fri, 26 Mar 2021 22:30: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