view runtime/ftplugof.vim @ 15553:df198b298bff v8.1.0784

patch 8.1.0784: messy indent in if statement commit https://github.com/vim/vim/commit/1f20daa1d784e2d8ae13db5b9c8abbb648dd2a03 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 19 21:12:24 2019 +0100 patch 8.1.0784: messy indent in if statement Problem: Messy indent in if statement. Solution: Improve structure of if statement. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/3826)
author Bram Moolenaar <Bram@vim.org>
date Sat, 19 Jan 2019 21:15:05 +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