view runtime/ftplugof.vim @ 12646:b908a3682f6e v8.0.1201

patch 8.0.1201: "yL" is affected by 'scrolloff' commit https://github.com/vim/vim/commit/44cc4cf72fdd12cd9a779031d443aac4254d51ae Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 15 22:13:37 2017 +0200 patch 8.0.1201: "yL" is affected by 'scrolloff' Problem: "yL" is affected by 'scrolloff'. (Eli the Bearded) Solution: Don't use 'scrolloff' when an operator is pending.
author Christian Brabandt <cb@256bit.org>
date Sun, 15 Oct 2017 22:15:05 +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