view runtime/ftplugof.vim @ 18247:eda5b2cb1dc4 v8.1.2118

patch 8.1.2118: termcodes test fails when $TERM is "dumb" Commit: https://github.com/vim/vim/commit/eb66328bd78c3001d71138306325718cb1c94712 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 6 12:02:15 2019 +0200 patch 8.1.2118: termcodes test fails when $TERM is "dumb" Problem: Termcodes test fails when $TERM is "dumb". Solution: Skip the test. (James McCoy, closes https://github.com/vim/vim/issues/5019)
author Bram Moolenaar <Bram@vim.org>
date Sun, 06 Oct 2019 12: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