2004-06-13 20:20:40 +00:00
|
|
|
" Vim support file to switch off loading plugins for file types
|
|
|
|
"
|
|
|
|
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
2011-10-20 18:12:32 +02:00
|
|
|
" Last Change: 2011 Oct 20
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
if exists("did_load_ftplugin")
|
|
|
|
unlet did_load_ftplugin
|
|
|
|
endif
|
|
|
|
|
2011-10-20 18:12:32 +02:00
|
|
|
" Remove all autocommands in the filetypeplugin group, if any exist.
|
|
|
|
if exists("#filetypeplugin")
|
|
|
|
silent! au! filetypeplugin *
|
|
|
|
endif
|