view runtime/ftplugof.vim @ 29672:6b8aaf16af99 v9.0.0176

patch 9.0.0176: checking character options is duplicated and incomplete Commit: https://github.com/vim/vim/commit/8ca29b6a3599b82b8822b7697cad63d0244c2d59 Author: zeertzjq <zeertzjq@outlook.com> Date: Tue Aug 9 12:53:14 2022 +0100 patch 9.0.0176: checking character options is duplicated and incomplete Problem: Checking character options is duplicated and incomplete. Solution: Move checking to check_chars_options(). (closes https://github.com/vim/vim/issues/10863)
author Bram Moolenaar <Bram@vim.org>
date Tue, 09 Aug 2022 14:00:05 +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