view runtime/ftplugof.vim @ 32798:f48e27f20e6b v9.0.1715

patch 9.0.1715: duplicate test in message_test.c Commit: https://github.com/vim/vim/commit/7772c93a3ec1ce60469e9aea9899687ae1141f34 Author: zeertzjq <zeertzjq@outlook.com> Date: Tue Aug 15 22:48:40 2023 +0200 patch 9.0.1715: duplicate test in message_test.c Problem: duplicate test in message_test.c Solution: Remove duplicate test and make functions static closes: #12803 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: zeertzjq <zeertzjq@outlook.com>
author Christian Brabandt <cb@256bit.org>
date Tue, 15 Aug 2023 23:00:04 +0200
parents 4027cefc2aab
children
line wrap: on
line source

vim9script

# Vim support file to switch off loading plugins for file types
#
# Maintainer:	The Vim Project <https://github.com/vim/vim>
# Last Change:	2023 Aug 10
# Former Maintainer:	Bram Moolenaar <Bram@vim.org>

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