annotate runtime/plugin/spellfile.vim @ 12624:ae2802b6bf7d v8.0.1190

patch 8.0.1190: unusable after opening new window in BufWritePre event commit https://github.com/vim/vim/commit/2c33d7bb69c4c2c5b0e39b03cc4b0c04cfdfbb0b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 14 16:06:20 2017 +0200 patch 8.0.1190: unusable after opening new window in BufWritePre event Problem: Vim becomes unusable after opening new window in BufWritePre event. Solution: Call not_exiting(). (Martin Tournoij, closes #2205) Also for "2q" when a help window is open. Add a test.
author Christian Brabandt <cb@256bit.org>
date Sat, 14 Oct 2017 16:15:04 +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>'))