annotate runtime/plugin/spellfile.vim @ 17395:119a53a4cb0e v8.1.1696

patch 8.1.1696: MSVC: link command line is too long commit https://github.com/vim/vim/commit/cea2a15687c54b8a700f77f3deef35269abb1417 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jul 15 20:44:57 2019 +0200 patch 8.1.1696: MSVC: link command line is too long Problem: MSVC: link command line is too long. Solution: Use the @<< mechanism to pass the arguments via a file. (Christian Brabandt)
author Bram Moolenaar <Bram@vim.org>
date Mon, 15 Jul 2019 21:00:03 +0200
parents 8157079cea85
children 4027cefc2aab
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
649
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
1 " Vim plugin for downloading spell files
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
2 " Maintainer: Bram Moolenaar <Bram@vim.org>
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
3 " Last Change: 2006 Feb 01
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
4
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
5 " Exit quickly when:
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
6 " - this plugin was already loaded
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
7 " - when 'compatible' is set
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
8 " - some autocommands are already taking care of spell files
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
9 if exists("loaded_spellfile_plugin") || &cp || exists("#SpellFileMissing")
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
10 finish
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
11 endif
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
12 let loaded_spellfile_plugin = 1
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
13
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
14 " The function is in the autoload directory.
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
15 autocmd SpellFileMissing * call spellfile#LoadFile(expand('<amatch>'))