view runtime/ftplugof.vim @ 21801:1344d45ca6f2 v8.2.1450

patch 8.2.1450: Vim9: no check that script-local items don't become global Commit: https://github.com/vim/vim/commit/7d6997015d533604f18756e59b4a2a1266a66a97 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 14 20:52:28 2020 +0200 patch 8.2.1450: Vim9: no check that script-local items don't become global Problem: Vim9: no check that script-local items don't become global. Solution: Add a test.
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Aug 2020 21:00:05 +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