view runtime/ftplugof.vim @ 27340:2b3cc874334c v8.2.4198

patch 8.2.4198: Vim9: the switch for executing instructions is too long Commit: https://github.com/vim/vim/commit/058ee7c5699ef551be5aa04c66b3cffc436e9b08 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 23 20:00:42 2022 +0000 patch 8.2.4198: Vim9: the switch for executing instructions is too long Problem: Vim9: the switch for executing instructions is too long. Solution: Move some code to separate functions.
author Bram Moolenaar <Bram@vim.org>
date Sun, 23 Jan 2022 21:15:03 +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