view runtime/ftplugof.vim @ 30059:e4f23b4244ff v9.0.0367

patch 9.0.0367: Coverity complains about dropping sign of character Commit: https://github.com/vim/vim/commit/0a6bb59f6b198b351555dc0919816c9f0f1e3ed9 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 3 12:53:20 2022 +0100 patch 9.0.0367: Coverity complains about dropping sign of character Problem: Coverity complains about dropping sign of character. Solution: Add explicit type cast.
author Bram Moolenaar <Bram@vim.org>
date Sat, 03 Sep 2022 14: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