view runtime/ftplugof.vim @ 30505:ce8545612296 v9.0.0588

patch 9.0.0588: MorphOS build is broken Commit: https://github.com/vim/vim/commit/4d2073b2610dd6270cc664224dce9524b2a1d758 Author: =?UTF-8?q?Ola=20S=C3=B6der?= <rolfkopman@gmail.com> Date: Sun Sep 25 19:36:38 2022 +0100 patch 9.0.0588: MorphOS build is broken Problem: MorphOS build is broken. Solution: Add "-lm" to LDFLAGS and "-noixemul" to CFLAGS. (Ola S?der, closes #11222)
author Bram Moolenaar <Bram@vim.org>
date Sun, 25 Sep 2022 20:45: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