view runtime/ftplugof.vim @ 18221:d27060eba45f v8.1.2105

patch 8.1.2105: MS-Windows: system() may crash Commit: https://github.com/vim/vim/commit/2886dccebaec2da55e5a99bd88d44ae4217dee6e Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 1 12:10:25 2019 +0200 patch 8.1.2105: MS-Windows: system() may crash Problem: MS-Windows: system() may crash. Solution: Do not use "itmp" when it is NULL. (Yasuhiro Matsumoto, closes #5005)
author Bram Moolenaar <Bram@vim.org>
date Tue, 01 Oct 2019 12:15: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