view runtime/ftplugof.vim @ 20947:1c71605f0c5d v8.2.1025

patch 8.2.1025: tabpage menu and tabline not sufficiently tested Commit: https://github.com/vim/vim/commit/8c524f76ebd43f006e765534765b595de7095f12 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 21 13:23:45 2020 +0200 patch 8.2.1025: tabpage menu and tabline not sufficiently tested Problem: Tabpage menu and tabline not sufficiently tested. Solution: Add tests. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/6307)
author Bram Moolenaar <Bram@vim.org>
date Sun, 21 Jun 2020 13:30:04 +0200
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