view runtime/ftplugof.vim @ 28051:c66769ac30b2 v8.2.4550

patch 8.2.4550: Motif: cannot set the color of the scrollbar thumb Commit: https://github.com/vim/vim/commit/5b4f8a0e8476d57ee8a48e45171d19c1d2b4154e Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 12 12:21:28 2022 +0000 patch 8.2.4550: Motif: cannot set the color of the scrollbar thumb Problem: Motif: cannot set the color of the scrollbar thumb. Solution: Remove #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Mar 2022 13:30:03 +0100
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