view runtime/ftplugof.vim @ 28513:6a1e5b188374 v8.2.4781

patch 8.2.4781: Maxima files are not recognized Commit: https://github.com/vim/vim/commit/d0a20c9d111da75febb60ffee2e15f727ab6a5ad Author: Doron Behar <doron.behar@gmail.com> Date: Mon Apr 18 14:32:42 2022 +0100 patch 8.2.4781: Maxima files are not recognized Problem: Maxima files are not recognized. Solution: Add patterns to detect Maxima files. (Doron Behar, closes https://github.com/vim/vim/issues/10211)
author Bram Moolenaar <Bram@vim.org>
date Mon, 18 Apr 2022 15:45:02 +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