view runtime/ftplugof.vim @ 11305:3bcdfad55b19 v8.0.0538

patch 8.0.0538: no test for falling back to default term value commit https://github.com/vim/vim/commit/85045a73db258a054a17fd52a67eb5cd02a788dc Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 2 16:54:09 2017 +0200 patch 8.0.0538: no test for falling back to default term value Problem: No test for falling back to default term value. Solution: Add a test.
author Christian Brabandt <cb@256bit.org>
date Sun, 02 Apr 2017 17: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