view runtime/ftplugof.vim @ 27667:289e87a78307 v8.2.4359

patch 8.2.4359: crash when repeatedly using :retab Commit: https://github.com/vim/vim/commit/6e28703a8e41f775f64e442c5d11ce1ff599aa3f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 12 15:42:18 2022 +0000 patch 8.2.4359: crash when repeatedly using :retab Problem: crash when repeatedly using :retab. Solution: Bail out when the line is getting too long.
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Feb 2022 16:45:03 +0100
parents 179c118424a6
children 4027cefc2aab
line wrap: on
line source

vim9script

# Vim support file to switch off loading plugins for file types
#
# Maintainer:	Bram Moolenaar <Bram@vim.org>
# Last Change:	2022 Feb 09

if exists("g:did_load_ftplugin")
  unlet g:did_load_ftplugin
endif

# Remove all autocommands in the filetypeplugin group, if any exist.
if exists("#filetypeplugin")
  silent! au! filetypeplugin *
endif