view runtime/ftplugof.vim @ 25324:af0fd37ae687 v8.2.3199

patch 8.2.3199: Vim9: execution speed can be improved Commit: https://github.com/vim/vim/commit/a74901929e999a0052c1ce388ab09359c10cbb0d Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 22 12:26:14 2021 +0200 patch 8.2.3199: Vim9: execution speed can be improved Problem: Vim9: execution speed can be improved. Solution: Make the break counter static.
author Bram Moolenaar <Bram@vim.org>
date Thu, 22 Jul 2021 12:30:04 +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