annotate runtime/plugin/spellfile.vim @ 19774:00a1b89256ea v8.2.0443

patch 8.2.0443: clipboard code is spread out Commit: https://github.com/vim/vim/commit/45fffdf10b7cb6e59794e76e9b8a2930fcb4b192 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 24 21:42:01 2020 +0100 patch 8.2.0443: clipboard code is spread out Problem: Clipboard code is spread out. Solution: Move clipboard code to its own file. (Yegappan Lakshmanan, closes #5827)
author Bram Moolenaar <Bram@vim.org>
date Tue, 24 Mar 2020 21:45:04 +0100
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>'))