view runtime/ftplugof.vim @ 29948:29e4cd9e66de v9.0.0312

patch 9.0.0312: test for cmdheight zero fails Commit: https://github.com/vim/vim/commit/98d1069a9cc6f1b439be154aeae0ed32a598e855 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Aug 29 00:08:39 2022 +0100 patch 9.0.0312: test for cmdheight zero fails Problem: Test for cmdheight zero fails. Solution: Do not close the messages window for CTRL-C.
author Bram Moolenaar <Bram@vim.org>
date Mon, 29 Aug 2022 01:15: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