view runtime/ftplugof.vim @ 27835:0815a43eebce v8.2.4443

patch 8.2.4443: regexp pattern test fails on Mac Commit: https://github.com/vim/vim/commit/2457b2bbc28cce6e8c1106d427b8e867d4f58cfa Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 22 16:19:37 2022 +0000 patch 8.2.4443: regexp pattern test fails on Mac Problem: Regexp pattern test fails on Mac. Solution: Do not use a swapfile for the buffer.
author Bram Moolenaar <Bram@vim.org>
date Tue, 22 Feb 2022 17:30:06 +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