view runtime/ftplugof.vim @ 25830:e2d74d655b75 v8.2.3450

patch 8.2.3450: coveralls action fails Commit: https://github.com/vim/vim/commit/18fefddcb023db3c8461953892650b0c5f0cc9fe Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 19 17:55:16 2021 +0200 patch 8.2.3450: coveralls action fails Problem: Coveralls action fails. Solution: Disable it for now.
author Bram Moolenaar <Bram@vim.org>
date Sun, 19 Sep 2021 18:00: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