view runtime/ftplugof.vim @ 23988:686af23ec132 v8.2.2536

patch 8.2.2536: Coverity complains about unchecked return value Commit: https://github.com/vim/vim/commit/dc167465f87a4f03f9e085597dfcfdde39fcd2b9 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 20 20:26:16 2021 +0100 patch 8.2.2536: Coverity complains about unchecked return value Problem: Coverity complains about unchecked return value. Solution: Add (void).
author Bram Moolenaar <Bram@vim.org>
date Sat, 20 Feb 2021 20:30:03 +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