view runtime/ftplugof.vim @ 14679:ba010fa2bcba v8.1.0352

patch 8.1.0352: browsing compressed tar files does not always work commit https://github.com/vim/vim/commit/d4a1aabe372ccb95aec968f4d54503231b1f956c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 8 15:10:34 2018 +0200 patch 8.1.0352: browsing compressed tar files does not always work Problem: Browsing compressed tar files does not always work. Solution: Use the "file" command to get the compression type.
author Christian Brabandt <cb@256bit.org>
date Sat, 08 Sep 2018 15: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