view runtime/ftplugof.vim @ 28827:91b2386b9d9e v8.2.4937

patch 8.2.4937: no test for what 8.2.4931 fixes Commit: https://github.com/vim/vim/commit/ead241538cdd26cbf02599b6e23cd8baeafbcbb2 Author: Bram Moolenaar <Bram@vim.org> Date: Tue May 10 21:11:12 2022 +0100 patch 8.2.4937: no test for what 8.2.4931 fixes Problem: No test for what 8.2.4931 fixes. Solution: Add a test that triggers a valgrind error.
author Bram Moolenaar <Bram@vim.org>
date Tue, 10 May 2022 22:15:02 +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