view runtime/ftplugof.vim @ 18631:e2d9f4d030fa v8.1.2308

patch 8.1.2308: deleting text before zero-width textprop removes it Commit: https://github.com/vim/vim/commit/ecafcc15ca92ecb9c6b41dbb3b0fcdf89c9eff69 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 16 20:41:51 2019 +0100 patch 8.1.2308: deleting text before zero-width textprop removes it Problem: Deleting text before zero-width textprop removes it. Solution: Keep zero-width textprop when deleting text.
author Bram Moolenaar <Bram@vim.org>
date Sat, 16 Nov 2019 20:45:04 +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