Mercurial > vim
view runtime/plugin/spellfile.vim @ 32593:70db21e91c73 v9.0.1628
patch 9.0.1628: syntax tests fail on FreeBSD
Commit: https://github.com/vim/vim/commit/d5b952a871835b057176fd37fc91b971e8e3f300
Author: K.Takata <kentkt@csc.jp>
Date: Tue Jun 13 22:44:57 2023 +0100
patch 9.0.1628: syntax tests fail on FreeBSD
Problem: Syntax tests fail on FreeBSD.
Solution: Pass the Vim executable path with VIMPROG. (Ken Takata,
closes #12535) Adjust the paths.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 14 Jun 2023 00:00:05 +0200 |
parents | 8157079cea85 |
children | 4027cefc2aab |
line wrap: on
line source
" Vim plugin for downloading spell files " Maintainer: Bram Moolenaar <Bram@vim.org> " Last Change: 2006 Feb 01 " 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>'))