view runtime/ftplugof.vim @ 18902:b24648ebcbc9 v8.2.0012

patch 8.2.0012: some undo functionality is not tested Commit: https://github.com/vim/vim/commit/559b9c68fe550f3af63d42e0838622aab1ceb1b3 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 15 18:09:19 2019 +0100 patch 8.2.0012: some undo functionality is not tested Problem: Some undo functionality is not tested. Solution: Add a few more test cases. (Dominique Pelle, closes https://github.com/vim/vim/issues/5364)
author Bram Moolenaar <Bram@vim.org>
date Sun, 15 Dec 2019 18:15: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