view runtime/ftplugof.vim @ 15310:34a04c9a3575 v8.1.0663

patch 8.1.0663: text property display wrong when 'number' is set commit https://github.com/vim/vim/commit/8caa10a8ec6e398fd67c30b8a2bf20638d3c6c0a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 30 22:07:40 2018 +0100 patch 8.1.0663: text property display wrong when 'number' is set Problem: Text property display wrong when 'number' is set. (Dominique Pelle) Solution: Compare with "vcol" instead of "col".
author Bram Moolenaar <Bram@vim.org>
date Sun, 30 Dec 2018 22:15:06 +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