view runtime/ftplugof.vim @ 22047:ed6165395d7b v8.2.1573

patch 8.2.1573: Vim9: getreg() does not take "true" as argument Commit: https://github.com/vim/vim/commit/67ff97ded70a87bc77f58d0bf9a261710ae88112 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 2 21:45:54 2020 +0200 patch 8.2.1573: Vim9: getreg() does not take "true" as argument Problem: Vim9: getreg() does not take "true" as argument. Solution: Use tv_get_bool_chk(). (closes https://github.com/vim/vim/issues/6820)
author Bram Moolenaar <Bram@vim.org>
date Wed, 02 Sep 2020 22:00:04 +0200
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