view runtime/ftplugof.vim @ 29260:81c09f7f8b0c

Added tag v8.2.5148 for changeset a5846b82119bc1b544d4ce88f5cd7ef4fd84748d
author Bram Moolenaar <Bram@vim.org>
date Wed, 22 Jun 2022 15:00:06 +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