|
6 | 6 | " - SpellCheck/quickfix.vim autoload script
|
7 | 7 | " - ingo/plugin/cmdcomplete.vim autoload script
|
8 | 8 | "
|
9 |
| -" Copyright: (C) 2011-2015 Ingo Karkat |
| 9 | +" Copyright: (C) 2011-2017 Ingo Karkat |
10 | 10 | " The VIM LICENSE applies to this script; see ':help copyright'.
|
11 | 11 | "
|
12 | 12 | " Maintainer: Ingo Karkat <[email protected]>
|
13 |
| -" |
14 |
| -" REVISION DATE REMARKS |
15 |
| -" 2.00.011 10-Feb-2015 Extract g:SpellCheck_ErrorTypes; we need those |
16 |
| -" in SpellCheck#ParseArguments(), too. |
17 |
| -" ENH: Add g:SpellCheck_Predicates configuration. |
18 |
| -" 2.00.010 09-Feb-2015 ENH: Make all commands take optional [bad | rare |
19 |
| -" | local | caps] type argument (the forwarded |
20 |
| -" [++opt] [file] accepted by some auxiliary |
21 |
| -" commands probably aren't very important here) |
22 |
| -" and use that for limiting the checks to those |
23 |
| -" spell error types. |
24 |
| -" Introduce g:SpellCheck_ConsideredErrorTypes |
25 |
| -" configuration variable to limit the error types |
26 |
| -" by default. |
27 |
| -" 1.30.009 23-Jul-2014 Add configuration for highlighting of the error |
28 |
| -" word and context in the quickfix window. |
29 |
| -" Introduce additional |
30 |
| -" g:SpellCheck_SpellWordPattern because spell |
31 |
| -" checking doesn't exactly use the 'iskeyword' |
32 |
| -" option, and we have to emulate it. |
33 |
| -" FIX: Quickfix mappings are gone when closing and |
34 |
| -" reopening the quickfix window (:cclose | copen), |
35 |
| -" because a new scratch buffer is used, but the |
36 |
| -" autocmd BufRead quickfix has been cleared. |
37 |
| -" Only clear that autocmd when a different |
38 |
| -" quickfix source is used. (And then also turn off |
39 |
| -" the plugin's additional syntax highlighting.) |
40 |
| -" 1.30.008 22-Jul-2014 Add configuration for error context. |
41 |
| -" 1.21.007 23-Sep-2013 Add :NextUnlessSpellError and :NextOrSpellCheck |
42 |
| -" auxiliary commands. |
43 |
| -" Allow to pass optional [++opt] [file] arguments |
44 |
| -" to the :Write... commands. |
45 |
| -" 1.20.006 08-May-2012 FIX: Line range is not defined and passed for |
46 |
| -" :BDeleteOrSpellCheck and other :...OrSpellCheck |
47 |
| -" commands, resulting in a script error. |
48 |
| -" ENH: Allow [range] for :BDeleteUnlessSpellError |
49 |
| -" and other :...UnlessSpellError commands, too. |
50 |
| -" 1.12.005 01-May-2012 ENH: Allow [range] for :SpellCheck command. |
51 |
| -" 1.10.004 30-Apr-2012 Add g:SpellCheck_OnSpellAdd hook. |
52 |
| -" 1.00.003 06-Dec-2011 FIX: Missing :quit in :XitOrSpellCheck. |
53 |
| -" 002 03-Dec-2011 Rename configvar to g:SpellCheck_OnNospell. |
54 |
| -" 001 02-Dec-2011 file creation |
55 | 13 |
|
56 | 14 | " Avoid installing twice or when in unsupported Vim version.
|
57 | 15 | if exists('g:loaded_SpellCheck') || (v:version < 700)
|
|
0 commit comments