view runtime/ftplugof.vim @ 23644:03acf9c49f07 v8.2.2364

patch 8.2.2364: Vim9: line break in lambda accesses freed memory Commit: https://github.com/vim/vim/commit/f898f7c68dc06def1a5ae02ce82a52a82af37cc4 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 16 18:09:52 2021 +0100 patch 8.2.2364: Vim9: line break in lambda accesses freed memory Problem: Vim9: line break in lambda accesses freed memory. Solution: Make a copy of the return type. (closes https://github.com/vim/vim/issues/7664)
author Bram Moolenaar <Bram@vim.org>
date Sat, 16 Jan 2021 18:15: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