view runtime/ftplugof.vim @ 19995:19dc9f64a906 v8.2.0553

patch 8.2.0553: error for unused argument Commit: https://github.com/vim/vim/commit/cd630becc8849bf4647f04eeb02a4883bf46140e Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 12 14:50:26 2020 +0200 patch 8.2.0553: error for unused argument Problem: Error for unused argument. Solution: Add UNUSED.
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Apr 2020 15:00: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