view runtime/ftplugof.vim @ 32464:f2138180c6f0

patch 9.0.1563: GTK3: window manager resize hints are incomplete Commit: https://github.com/vim/vim/commit/c0da540466c89e388e7a15a12bab2f9fc42d9671 Author: Bram Moolenaar <Bram@vim.org> Date: Tue May 16 22:15:51 2023 +0100 patch 9.0.1563: GTK3: window manager resize hints are incomplete Problem: GTK3: window manager resize hints are incomplete. Solution: Use NULL for second argument of gtk_window_set_geometry_hints(). (Kenny Stauffer closes #11055)
author Bram Moolenaar <Bram@vim.org>
date Wed, 17 May 2023 00: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