view runtime/ftplugof.vim @ 29754:32f358d71ec2 v9.0.0217

patch 9.0.0217: 'shellslash' works differently when sourcing a script again Commit: https://github.com/vim/vim/commit/5a4fff4d948cd12a5cf5f637ad2c561815a77d8e Author: zeertzjq <zeertzjq@outlook.com> Date: Mon Aug 15 17:53:55 2022 +0100 patch 9.0.0217: 'shellslash' works differently when sourcing a script again Problem: 'shellslash' works differently when sourcing a script again. Solution: Use the name from the script item. (closes https://github.com/vim/vim/issues/10920)
author Bram Moolenaar <Bram@vim.org>
date Mon, 15 Aug 2022 19:00:03 +0200
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