view runtime/ftplugof.vim @ 15402:c17b5e30a0af v8.1.0709

patch 8.1.0709: windows are updated for every added/deleted sign commit https://github.com/vim/vim/commit/27a472c32ed5b5298bca50864570a4a71ec1d204 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 9 21:47:30 2019 +0100 patch 8.1.0709: windows are updated for every added/deleted sign Problem: Windows are updated for every added/deleted sign. Solution: Do not call update_debug_sign(). Only redraw when the line with the sign is visible. (idea from neovim #9479)
author Bram Moolenaar <Bram@vim.org>
date Wed, 09 Jan 2019 22:00: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