view runtime/ftplugof.vim @ 27982:06c6563d3768 v8.2.4516

patch 8.2.4516: build failure without the +eval feature Commit: https://github.com/vim/vim/commit/525eba00ef818f50fb3ba71c54409a7a8962b344 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 5 22:07:32 2022 +0000 patch 8.2.4516: build failure without the +eval feature Problem: Build failure without the +eval feature. Solution: Move error message outside of #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Sat, 05 Mar 2022 23:15:02 +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