view runtime/ftplugof.vim @ 27680:38eab98ef5a9 v8.2.4366

patch 8.2.4366: not enough tests for command line completion Commit: https://github.com/vim/vim/commit/4d03d870007c593bce2cfa8d0a6597ca3a20fa35 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sun Feb 13 11:45:09 2022 +0000 patch 8.2.4366: not enough tests for command line completion Problem: Not enough tests for command line completion. Solution: Add a few more tests. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/9760)
author Bram Moolenaar <Bram@vim.org>
date Sun, 13 Feb 2022 13:00:04 +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