view runtime/ftplugof.vim @ 20136:fdf94ab9929b v8.2.0623

patch 8.2.0623: typo in test comment Commit: https://github.com/vim/vim/commit/f7b398c6a9476a2004a42555b731ebf47b866408 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 23 15:46:35 2020 +0200 patch 8.2.0623: typo in test comment Problem: Typo in test comment. (Christ van Willegen) Solution: Avoid mixing up a data structure with a body part.
author Bram Moolenaar <Bram@vim.org>
date Thu, 23 Apr 2020 16:15:05 +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