view runtime/ftplugof.vim @ 26290:f8357556b2f3 v8.2.3676

patch 8.2.3676: unused runtime file Commit: https://github.com/vim/vim/commit/309ce251897512d42da2b0df0ff100dc303e688a Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 25 15:11:03 2021 +0000 patch 8.2.3676: unused runtime file Problem: Unused runtime file. Solution: Remove rgb.txt.
author Bram Moolenaar <Bram@vim.org>
date Thu, 25 Nov 2021 16:15:02 +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