view runtime/ftplugof.vim @ 23608:3b378f03f713 v8.2.2346

patch 8.2.2346: Codecov reports every little coverage drop Commit: https://github.com/vim/vim/commit/845b72854de90de13879598df53f1c388e52e1ba Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 14 17:55:59 2021 +0100 patch 8.2.2346: Codecov reports every little coverage drop Problem: Codecov reports every little coverage drop. Solution: Tolerate a 0.05% drop. Hide the appveyor config file. (Ozaki Kiichi, closes #7678)
author Bram Moolenaar <Bram@vim.org>
date Thu, 14 Jan 2021 18:00:04 +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