view runtime/ftplugof.vim @ 32080:fc1d95479511 v9.0.1371

patch 9.0.1371: ballooneval interferes with Insert completion Commit: https://github.com/vim/vim/commit/440d4cb55b84fd4b188630abc4a1312598649af0 Author: zeertzjq <zeertzjq@outlook.com> Date: Thu Mar 2 17:51:32 2023 +0000 patch 9.0.1371: ballooneval interferes with Insert completion Problem: Ballooneval interferes with Insert completion. Solution: Ignore mouse-move events when completing. (closes https://github.com/vim/vim/issues/12094, closes #12092)
author Bram Moolenaar <Bram@vim.org>
date Thu, 02 Mar 2023 19:00:05 +0100
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