view runtime/ftplugof.vim @ 13744:d6553cde1292 v8.0.1744

patch 8.0.1744: on some systems /dev/stdout isn't writable commit https://github.com/vim/vim/commit/9980b37a80dc72eef05bf8862aaf475ab17790a5 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 21 20:12:35 2018 +0200 patch 8.0.1744: on some systems /dev/stdout isn't writable Problem: On some systems /dev/stdout isn't writable. Solution: Skip test if writing is not possible. (James McCoy, closes https://github.com/vim/vim/issues/2830)
author Christian Brabandt <cb@256bit.org>
date Sat, 21 Apr 2018 20:15:08 +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