view runtime/ftplugof.vim @ 22061:d6120c97f57c v8.2.1580

patch 8.2.1580: wildmenu does not work properly Commit: https://github.com/vim/vim/commit/a60053b8f4cc7e135ba9496a8f4855d26aee09e7 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 3 16:50:13 2020 +0200 patch 8.2.1580: wildmenu does not work properly Problem: Wildmenu does not work properly. Solution: Do not call may_do_incsearch_highlighting() if completion is in progress.
author Bram Moolenaar <Bram@vim.org>
date Thu, 03 Sep 2020 17:00:04 +0200
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