view runtime/ftplugof.vim @ 32363:c114eebb5268 v9.0.1513

patch 9.0.1513: text scrolls unnecessarily when splitting Commit: https://github.com/vim/vim/commit/b926bf47d61360a4ec5e4867714a08d70fd49965 Author: Luuk van Baal <luukvbaal@gmail.com> Date: Sat May 6 12:53:50 2023 +0100 patch 9.0.1513: text scrolls unnecessarily when splitting Problem: Text scrolls unnecessarily when splitting and 'splitkeep' is not "cursor". Solution: Avoid resetting w_skipcol. (Luuk van Baal, closes #12334)
author Bram Moolenaar <Bram@vim.org>
date Sat, 06 May 2023 14:00:04 +0200
parents 179c118424a6
children 4027cefc2aab
line wrap: on
line source

vim9script

# Vim support file to switch off loading plugins for file types
#
# Maintainer:	Bram Moolenaar <Bram@vim.org>
# Last Change:	2022 Feb 09

if exists("g:did_load_ftplugin")
  unlet g:did_load_ftplugin
endif

# Remove all autocommands in the filetypeplugin group, if any exist.
if exists("#filetypeplugin")
  silent! au! filetypeplugin *
endif