view runtime/ftplugof.vim @ 28873:c3570bdc93eb v8.2.4959

patch 8.2.4959: using NULL regexp program Commit: https://github.com/vim/vim/commit/b62dc5e7825bc195efe3041d5b3a9f1528359e1c Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 15 14:50:12 2022 +0100 patch 8.2.4959: using NULL regexp program Problem: Using NULL regexp program. Solution: Check for regexp program becoming NULL in more places.
author Bram Moolenaar <Bram@vim.org>
date Sun, 15 May 2022 16: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