view runtime/ftplugof.vim @ 11492:5ccf1b222223 v8.0.0629

patch 8.0.0629: checking for ambigous width is not working commit https://github.com/vim/vim/commit/6b1da3312e15c065b373c9ec2732f31a77cee61f Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 9 21:35:47 2017 +0200 patch 8.0.0629: checking for ambigous width is not working Problem: Checking for ambigous width is not working. (Hirohito Higashi) Solution: Reset "starting" earlier.
author Christian Brabandt <cb@256bit.org>
date Fri, 09 Jun 2017 21:45:04 +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