view runtime/ftplugof.vim @ 23231:990466a75d3c v8.2.2161

patch 8.2.2161: arguments -T and -x not tested yet Commit: https://github.com/vim/vim/commit/1f33e0a7c4cd278158b37f91a2aa44f0bcd1f21a Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 19 13:32:07 2020 +0100 patch 8.2.2161: arguments -T and -x not tested yet Problem: Arguments -T and -x not tested yet. Solution: Add a test. (Dominique Pell?, closes https://github.com/vim/vim/issues/7490
author Bram Moolenaar <Bram@vim.org>
date Sat, 19 Dec 2020 13: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