view runtime/ftplugof.vim @ 31037:ac16c9a934ad v9.0.0853

patch 9.0.0853: terminal mouse test is still flaky on MacOS M1 Commit: https://github.com/vim/vim/commit/98aebcc2c6f4b131d2098ebc60c4a552a5163aec Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 10 12:38:16 2022 +0000 patch 9.0.0853: terminal mouse test is still flaky on MacOS M1 Problem: Terminal mouse test is still flaky on MacOS M1. Solution: Also wait for the file to have some contents.
author Bram Moolenaar <Bram@vim.org>
date Thu, 10 Nov 2022 13:45:08 +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