view runtime/ftplugof.vim @ 30063:72c8fbb9e242 v9.0.0369

patch 9.0.0369: a failing flaky test doesn't mention the time Commit: https://github.com/vim/vim/commit/06d32a0c177e4166ff0491668cd459464bc2ef45 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 3 13:58:47 2022 +0100 patch 9.0.0369: a failing flaky test doesn't mention the time Problem: A failing flaky test doesn't mention the time. Solution: Add the time for debugging. Improve error message.
author Bram Moolenaar <Bram@vim.org>
date Sat, 03 Sep 2022 15:00:03 +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