view runtime/ftplugof.vim @ 32068:a87a50f84f96 v9.0.1365

patch 9.0.1365: dead test code Commit: https://github.com/vim/vim/commit/f0300fc7b81e63c2584dc3a763dedea4184d17e5 Author: zeertzjq <zeertzjq@outlook.com> Date: Tue Feb 28 16:02:35 2023 +0000 patch 9.0.1365: dead test code Problem: Dead test code. Solution: Remove code that depends on Farsi, which has been removed. (closes #12084)
author Bram Moolenaar <Bram@vim.org>
date Tue, 28 Feb 2023 17:15:03 +0100
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