view runtime/ftplugof.vim @ 30397:3f2fcc517d79 v9.0.0534

patch 9.0.0534: line number is displayed at virtual text "above" Commit: https://github.com/vim/vim/commit/ec5e1483ebda577e0b7f638c485203cd0e479c47 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 21 16:38:13 2022 +0100 patch 9.0.0534: line number is displayed at virtual text "above" Problem: Line number is displayed at virtual text "above". Solution: Show the line number at the text line.
author Bram Moolenaar <Bram@vim.org>
date Wed, 21 Sep 2022 17:45: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