view runtime/ftplugof.vim @ 26081:6b6163d42b22 v8.2.3574

patch 8.2.3574: divide by zero Commit: https://github.com/vim/vim/commit/8a1962d1355096af55e84b1ea2f0baf5f1c5a5bc Author: Bram Moolenaar <Bram@vim.org> Date: Tue Nov 2 22:48:49 2021 +0000 patch 8.2.3574: divide by zero Problem: Divide by zero. Solution: Don't check for overflow if multiplicand is zero.
author Bram Moolenaar <Bram@vim.org>
date Wed, 03 Nov 2021 00:00:05 +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