view runtime/ftplugof.vim @ 28360:af739ab30d2a

Added tag v8.2.4705 for changeset 390dfc3e409b641b7d1d696af61a5692e74dfaeb
author Bram Moolenaar <Bram@vim.org>
date Thu, 07 Apr 2022 15:00:05 +0200
parents 179c118424a6
children 4027cefc2aab
line wrap: on
line source

vim9script

# Vim support file to switch off loading plugins for file types
#
# Maintainer:	Bram Moolenaar <Bram@vim.org>
# Last Change:	2022 Feb 09

if exists("g:did_load_ftplugin")
  unlet g:did_load_ftplugin
endif

# Remove all autocommands in the filetypeplugin group, if any exist.
if exists("#filetypeplugin")
  silent! au! filetypeplugin *
endif