Skip to content

Commit 9093f61

Browse files
committed
Release 2.00 in Git; remove changelogs
1 parent 8060710 commit 9093f61

File tree

6 files changed

+7
-123
lines changed

6 files changed

+7
-123
lines changed

autoload/SpellCheck.vim

+1-31
Original file line numberDiff line numberDiff line change
@@ -4,40 +4,10 @@
44
" - ingo/msg.vim autoload script
55
" - ingo/plugin/setting.vim autoload script
66
"
7-
" Copyright: (C) 2011-2015 Ingo Karkat
7+
" Copyright: (C) 2011-2017 Ingo Karkat
88
" The VIM LICENSE applies to this script; see ':help copyright'.
99
"
1010
" Maintainer: Ingo Karkat <[email protected]>
11-
"
12-
" REVISION DATE REMARKS
13-
" 2.00.007 10-Feb-2015 ENH: Allow to pass arbitrary predicates after /
14-
" instead of spell error types. Extend
15-
" SpellCheck#GetTypes() into
16-
" SpellCheck#ParseArguments().
17-
" 2.00.006 09-Feb-2015 Make SpellCheck#CheckErrors() take an additional
18-
" a:types argument to support filtering for
19-
" certain spell error types. Add loop and iterate
20-
" until an corresponding spell error type is
21-
" encountered or an exit condition is met.
22-
" Always position the cursor at the beginning of
23-
" the checked range. This avoids the workaround in
24-
" s:GotoNextSpellError() and lets us :set
25-
" nowrapscan, to avoid endless iteration.
26-
" Go to the first misspelling in the passed range
27-
" (if any) instead of the first overall. I think
28-
" this is more DWIM.
29-
" Extract SpellCheck#NoErrorsFoundMessage() and
30-
" create SpellCheck#GetTypes() for reuse.
31-
" 1.21.005 14-Jun-2013 Use ingo/msg.vim.
32-
" 1.20.004 08-May-2012 ENH: Allow [range] for :BDeleteUnlessSpellError
33-
" and other :...UnlessSpellError commands, too.
34-
" 1.10.003 30-Apr-2012 Add SpellCheck#SpellAddWrapper() function as
35-
" default for new g:SpellCheck_OnSpellAdd hook.
36-
" 1.00.002 06-Dec-2011 Publish.
37-
" 002 03-Dec-2011 New default behavior on &nospell is to just turn
38-
" on &spell, and cause an error when no &spelllang
39-
" has been set yet.
40-
" 001 02-Dec-2011 file creation
4111
let s:save_cpo = &cpo
4212
set cpo&vim
4313

autoload/SpellCheck/mappings.vim

+1-21
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,10 @@
44
" - SpellCheck.vim autoload script
55
" - ingo/collections.vim autoload script
66
"
7-
" Copyright: (C) 2012-2014 Ingo Karkat
7+
" Copyright: (C) 2012-2017 Ingo Karkat
88
" The VIM LICENSE applies to this script; see ':help copyright'.
99
"
1010
" Maintainer: Ingo Karkat <[email protected]>
11-
"
12-
" REVISION DATE REMARKS
13-
" 1.30.007 22-Jul-2014 Rework s:InsertMessage() to deal with
14-
" potentially appended error contexts.
15-
" Simplify s:UndoCorrectedQuickfixEntry() by also
16-
" using s:QuickfixInsertMessage().
17-
" 1.21.006 14-Jun-2013 Minor: Make substitute() robust against
18-
" 'ignorecase'.
19-
" 1.21.005 21-Feb-2013 Move to ingo-library.
20-
" 1.13.004 01-May-2012 ENH: Apply undo to the target buffer to allow a
21-
" quick revert of a spell correction.
22-
" 1.11.003 30-Apr-2012 ENH: Capture corrected text and include in
23-
" quickfix status message.
24-
" 1.10.002 30-Apr-2012 Add quickfix mappings for word list management.
25-
" Add indication of spell command's result as a
26-
" status message appended to the quickfix list
27-
" entry.
28-
" Avoid staying in target buffer by temporarily
29-
" reducing 'updatetime'.
30-
" 1.10.001 29-Apr-2012 file creation
3111

3212
function! SpellCheck#mappings#SpellSuggestWrapper( ... )
3313
let l:addendum = ''

autoload/SpellCheck/quickfix.vim

+1-20
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,10 @@
44
" - SpellCheck.vim autoload script
55
" - ingo/collections/unique.vim autoload script
66
"
7-
" Copyright: (C) 2011-2015 Ingo Karkat
7+
" Copyright: (C) 2011-2017 Ingo Karkat
88
" The VIM LICENSE applies to this script; see ':help copyright'.
99
"
1010
" Maintainer: Ingo Karkat <[email protected]>
11-
"
12-
" REVISION DATE REMARKS
13-
" 2.00.008 10-Feb-2015 ENH: Take both types and predicates.
14-
" 2.00.007 09-Feb-2015 Make SpellCheck#quickfix#List() take an
15-
" additional a:types argument to support filtering
16-
" for certain spell error types.
17-
" Delegate to SpellCheck#NoErrorsFoundMessage().
18-
" Set the quickfix type to the capitalized first
19-
" letter of the spell error type, except for the
20-
" default "bad" ones. This allows for better
21-
" differentiation than the previous lumping of
22-
" rare + local as warning vs. errors.
23-
" 1.30.006 22-Jul-2014 ENH: Gather (if configured) error context(s) and
24-
" append to the quickfix entry.
25-
" 1.12.005 01-May-2012 ENH: Allow [range] for :SpellCheck command.
26-
" 1.01.002 06-Dec-2011 ENH: Allow accumulating spelling errors from
27-
" multiple buffers (e.g. via :argdo SpellCheck).
28-
" 1.00.001 06-Dec-2011 Publish.
29-
" 001 02-Dec-2011 file creation
3011
let s:save_cpo = &cpo
3112
set cpo&vim
3213

doc/SpellCheck.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -241,15 +241,15 @@ TODO *SpellCheck-todo*
241241

242242
IDEAS *SpellCheck-ideas*
243243

244-
CONTRIBUTING *SpellCheck-contribute*
244+
CONTRIBUTING *SpellCheck-contribute*
245245

246246
Report any bugs, send patches, or suggest features via the issue tracker at
247247
https://github.com/inkarkat/vim-SpellCheck/issues or email (address below).
248248

249249
==============================================================================
250250
HISTORY *SpellCheck-history*
251251

252-
2.00 RELEASEME
252+
2.00 06-Oct-2017
253253
- ENH: Make all commands take optional [bad | rare | local | caps] type
254254
argument (the forwarded [++opt] [file] accepted by some auxiliary commands
255255
probably aren't very important here) and use that for limiting the checks to

plugin/SpellCheck.vim

+1-43
Original file line numberDiff line numberDiff line change
@@ -6,52 +6,10 @@
66
" - SpellCheck/quickfix.vim autoload script
77
" - ingo/plugin/cmdcomplete.vim autoload script
88
"
9-
" Copyright: (C) 2011-2015 Ingo Karkat
9+
" Copyright: (C) 2011-2017 Ingo Karkat
1010
" The VIM LICENSE applies to this script; see ':help copyright'.
1111
"
1212
" 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
5513

5614
" Avoid installing twice or when in unsupported Vim version.
5715
if exists('g:loaded_SpellCheck') || (v:version < 700)

syntax/qf/SpellCheck.vim

+1-6
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,10 @@
33
" DEPENDENCIES:
44
" - ingo/compat/regexp.vim autoload script
55
"
6-
" Copyright: (C) 2014-2015 Ingo Karkat
6+
" Copyright: (C) 2014-2017 Ingo Karkat
77
" The VIM LICENSE applies to this script; see ':help copyright'.
88
"
99
" Maintainer: Ingo Karkat <[email protected]>
10-
"
11-
" REVISION DATE REMARKS
12-
" 2.00.002 20-Feb-2015 Replace explicit regexp engine workaround with
13-
" ingo/compat/regexp.vim.
14-
" 001 23-Jul-2014 file creation
1510

1611
if ! exists('g:SpellCheck_IsQuickfixHighlightActive') || ! g:SpellCheck_IsQuickfixHighlightActive
1712
finish " Only apply the syntax additions when the quickfix window actually contains spelling errors, to avoid messing up errors from unrelated sources.

0 commit comments

Comments
 (0)