view runtime/ftplugof.vim @ 17139:03fbad5d6279 v8.1.1569

patch 8.1.1569: cannot build with signs but without diff feature commit https://github.com/vim/vim/commit/bf8c3adef21c24a9bf2c1a93042a096ea8d8b2e1 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jun 19 14:28:43 2019 +0200 patch 8.1.1569: cannot build with signs but without diff feature Problem: Cannot build with signs but without diff feature. Solution: Move #ifdef. (Tom Ryder)
author Bram Moolenaar <Bram@vim.org>
date Wed, 19 Jun 2019 14:30:06 +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