view runtime/ftplugof.vim @ 17924:dbe02cca67aa v8.1.1958

patch 8.1.1958: old style comments taking up space Commit: https://github.com/vim/vim/commit/c33083592846c8d4b2d6fae499536b9d578fe10d Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 1 16:24:56 2019 +0200 patch 8.1.1958: old style comments taking up space Problem: Old style comments taking up space. Solution: Change to new style comments.
author Bram Moolenaar <Bram@vim.org>
date Sun, 01 Sep 2019 16:30:03 +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