view runtime/ftplugof.vim @ 10307:f4798aebef67 v8.0.0049

commit https://github.com/vim/vim/commit/2f97912800e86a296c001832bbbf2fc425f1e533 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 27 17:27:44 2016 +0200 patch 8.0.0049 Problem: When a match ends in part of concealed text highlighting, it might mess up concealing by resetting prev_syntax_id. Solution: Do not reset prev_syntax_id and add a test to verify. (Christian Brabandt, closes #1092)
author Christian Brabandt <cb@256bit.org>
date Thu, 27 Oct 2016 17:30: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