view runtime/ftplugof.vim @ 22222:7b9e8fd7ea5b v8.2.1660

patch 8.2.1660: assert functions require passing expected as first argument Commit: https://github.com/vim/vim/commit/c0c71e9d9813f025c5fc1ce84eae309843395199 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 11 19:09:48 2020 +0200 patch 8.2.1660: assert functions require passing expected as first argument Problem: Assert functions require passing expected result as the first argument, which isn't obvious. Solution: Use a method, as in "runtest()->assert_equal(expected)".
author Bram Moolenaar <Bram@vim.org>
date Fri, 11 Sep 2020 19:15: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