diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-04-10 04:52:10 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-04-10 04:52:10 -0400 |
commit | 91c5005da82e6f9ab6bb2f46b27cb82b188b0391 (patch) | |
tree | 8ffe1898284a6e76aed87e4cdd8f64ef87b2e298 /runtime/plugin | |
parent | 1bf1ffc7346c0cc8e8ef337fd94badd3a530e90e (diff) | |
parent | 8d37201ed29a4149ff87b17e7ade209a0981986a (diff) | |
download | rneovim-91c5005da82e6f9ab6bb2f46b27cb82b188b0391.tar.gz rneovim-91c5005da82e6f9ab6bb2f46b27cb82b188b0391.tar.bz2 rneovim-91c5005da82e6f9ab6bb2f46b27cb82b188b0391.zip |
Merge pull request #4555 from justinmk/spell
spell: fix SpellFileMissing handler
Diffstat (limited to 'runtime/plugin')
-rw-r--r-- | runtime/plugin/spellfile.vim | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/runtime/plugin/spellfile.vim b/runtime/plugin/spellfile.vim index 437296090c..e03659d6d6 100644 --- a/runtime/plugin/spellfile.vim +++ b/runtime/plugin/spellfile.vim @@ -1,15 +1,8 @@ " 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>')) |