view runtime/ftplugof.vim @ 27597:4eb2bf8b2f27 v8.2.4325

patch 8.2.4325: 'wildmenu' only shows few matches Commit: https://github.com/vim/vim/commit/3908ef5017a6b4425727013588f72cc7343199b9 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Tue Feb 8 12:08:07 2022 +0000 patch 8.2.4325: 'wildmenu' only shows few matches Problem: 'wildmenu' only shows few matches. Solution: Add the "pum" option: use a popup menu to show the matches. (Yegappan Lakshmanan et al., closes #9707)
author Bram Moolenaar <Bram@vim.org>
date Tue, 08 Feb 2022 13:15:05 +0100
parents 49b08c9b9f5b
children 179c118424a6
line wrap: on
line source

" Vim support file to switch off loading plugins for file types
"
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2011 Oct 20

if exists("did_load_ftplugin")
  unlet did_load_ftplugin
endif

" Remove all autocommands in the filetypeplugin group, if any exist.
if exists("#filetypeplugin")
  silent! au! filetypeplugin *
endif