view runtime/ftplugof.vim @ 24180:3c165c7432ff v8.2.2631

patch 8.2.2631: commands from winrestcmd() do not always work properly Commit: https://github.com/vim/vim/commit/a0c8aea479ca055ce43ba2984a9933f6c48e6161 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 20 19:55:35 2021 +0100 patch 8.2.2631: commands from winrestcmd() do not always work properly Problem: Commands from winrestcmd() do not always work properly. (Leonid V. Fedorenchik) Solution: Repeat the size commands twice. (closes #7988)
author Bram Moolenaar <Bram@vim.org>
date Sat, 20 Mar 2021 20:00: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