view runtime/ftplugof.vim @ 30635:604d7d7aa043 v9.0.0652

patch 9.0.0652: 'smoothscroll' not tested with 'number' and "n" in 'cpo' Commit: https://github.com/vim/vim/commit/b6aab8f44beb8c5d99393abdc2c9faab085c72aa Author: Bram Moolenaar <Bram@vim.org> Date: Mon Oct 3 20:01:16 2022 +0100 patch 9.0.0652: 'smoothscroll' not tested with 'number' and "n" in 'cpo' Problem: 'smoothscroll' not tested with 'number' and "n" in 'cpo'. Solution: Add tests, fix uncovered problem.
author Bram Moolenaar <Bram@vim.org>
date Mon, 03 Oct 2022 21:15:03 +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