view runtime/ftplugof.vim @ 10416:ef5474130b0e v8.0.0102

commit https://github.com/vim/vim/commit/7554da4033498c4da0af3cde542c3e87e9097b73 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Nov 25 22:04:13 2016 +0100 patch 8.0.0102 Problem: Cannot set 'dictionary' to a path. Solution: Allow for slash and backslash. Add a test (partly by Daisuke Suzuki, closes https://github.com/vim/vim/issues/1279, closes https://github.com/vim/vim/issues/1284)
author Christian Brabandt <cb@256bit.org>
date Fri, 25 Nov 2016 22:15:04 +0100
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