view runtime/ftplugof.vim @ 27792:2d7691a945d1 v8.2.4422

patch 8.2.4422: autochdir test fails on MS-Windows Commit: https://github.com/vim/vim/commit/adbb383e0f2bb59286ea8133f02c448fd334958f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 19 14:49:51 2022 +0000 patch 8.2.4422: autochdir test fails on MS-Windows Problem: Autochdir test fails on MS-Windows. Solution: Expecta nother error on MS-Windows.
author Bram Moolenaar <Bram@vim.org>
date Sat, 19 Feb 2022 16:00:02 +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