view runtime/ftplugof.vim @ 26817:a8ded20a59e6 v8.2.3937

patch 8.2.3937: Insert mode completion function is too long Commit: https://github.com/vim/vim/commit/edc6f103907a004b9e2265e232dc8be8bc594601 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Wed Dec 29 17:38:46 2021 +0000 patch 8.2.3937: Insert mode completion function is too long Problem: Insert mode completion function is too long. Solution: Refactor into multiple functions. (Yegappan Lakshmanan, closes #9423)
author Bram Moolenaar <Bram@vim.org>
date Wed, 29 Dec 2021 18:45:03 +0100
parents 49b08c9b9f5b
children 179c118424a6
line wrap: on
line source

" Vim support file to switch off loading plugins for file types
"
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2011 Oct 20

if exists("did_load_ftplugin")
  unlet did_load_ftplugin
endif

" Remove all autocommands in the filetypeplugin group, if any exist.
if exists("#filetypeplugin")
  silent! au! filetypeplugin *
endif