view runtime/plugin/spellfile.vim @ 35138:98327050d01d default tip

runtime(spec): add new items to scripts section in syntax plugin Commit: https://github.com/vim/vim/commit/cb3691811be93b2c49179649c684d6ce2141a46f Author: Maxwell G <maxwell@gtmx.me> Date: Wed May 8 20:27:58 2024 +0200 runtime(spec): add new items to scripts section in syntax plugin - %generate_buildrequires ? added in RPM 4.15 - %conf ? added in RPM 4.18 closes: #14723 Ref: https://rpm-software-management.github.io/rpm/manual/spec.html#build-scriptlets Signed-off-by: author Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 08 May 2024 20:30:08 +0200
parents 4027cefc2aab
children
line wrap: on
line source

" Vim plugin for downloading spell files
" Maintainer:	The Vim Project <https://github.com/vim/vim>
" Last Change:	2023 Aug 10
" Former Maintainer:	Bram Moolenaar <Bram@vim.org>

" Exit quickly when:
" - this plugin was already loaded
" - when 'compatible' is set
" - some autocommands are already taking care of spell files
if exists("loaded_spellfile_plugin") || &cp || exists("#SpellFileMissing")
  finish
endif
let loaded_spellfile_plugin = 1

" The function is in the autoload directory.
autocmd SpellFileMissing * call spellfile#LoadFile(expand('<amatch>'))