view runtime/ftplugof.vim @ 9448:1227e52979f8 v7.4.2005

commit https://github.com/vim/vim/commit/ee1deb4a00f39f133558321ec535354497f490c8 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 8 23:06:21 2016 +0200 patch 7.4.2005 Problem: After using evalcmd() message output is in the wrong position. (Christian Brabandt) Solution: Reset msg_col.
author Christian Brabandt <cb@256bit.org>
date Fri, 08 Jul 2016 23:15:06 +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