view runtime/ftplugof.vim @ 24045:1b56d4c75d19 v8.2.2564

patch 8.2.2564: focus events end Insert mode if 'esckeys' is not set Commit: https://github.com/vim/vim/commit/51b477f74f0de11f6f92a65590f358e04a60a099 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 3 15:24:28 2021 +0100 patch 8.2.2564: focus events end Insert mode if 'esckeys' is not set Problem: Focus events end Insert mode if 'esckeys' is not set. Solution: Do not enable focus events when 'esckeys' is off. (closes https://github.com/vim/vim/issues/7926)
author Bram Moolenaar <Bram@vim.org>
date Wed, 03 Mar 2021 15:30:03 +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