view runtime/ftplugof.vim @ 15197:074c643ee78f v8.1.0608

patch 8.1.0608: coverals is not updating commit https://github.com/vim/vim/commit/e66777901382a554797a4c70ffbc0c63440cfe57 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Dec 18 22:04:05 2018 +0100 patch 8.1.0608: coverals is not updating Problem: Coverals is not updating. Solution: Adjust path in Travis config.
author Bram Moolenaar <Bram@vim.org>
date Tue, 18 Dec 2018 22:15:06 +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