view runtime/ftplugof.vim @ 24392:79fda175df83 v8.2.2736

patch 8.2.2736: Vim9: for loop over string is a bit slow Commit: https://github.com/vim/vim/commit/175a41c13f3e27e30c662f2f418c5a347dbc645d Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 8 18:05:03 2021 +0200 patch 8.2.2736: Vim9: for loop over string is a bit slow Problem: Vim9: for loop over string is a bit slow. Solution: Avoid using strlen().
author Bram Moolenaar <Bram@vim.org>
date Thu, 08 Apr 2021 18: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