updated for version 7.4.253
Problem: Crash when using cpp syntax file with pattern using external
match. (Havard Garnes)
Solution: Discard match when end column is before start column.
updated for version 7.4.251
Problem: Crash when BufAdd autocommand wipes out the buffer.
Solution: Check for buffer to still be valid. Postpone freeing the buffer
structure. (Hirohito Higashi)
updated for version 7.4.247
Problem: When passing input to system() there is no way to keep NUL and
NL characters separate.
Solution: Optionally use a list for the system() input. (ZyX)
updated for version 7.4.246
Problem: Configure message for detecting smack are out of sequence.
Solution: Put the messages in the right place. (Kazunobu Kuriyama)
updated for version 7.4.242
Problem: getreg() does not distinguish between a NL used for a line break
and a NL used for a NUL character.
Solution: Add another argument to return a list. (ZyX)
updated for version 7.4.241
Problem: The string returned by submatch() does not distinguish between a
NL from a line break and a NL that stands for a NUL character.
Solution: Add a second argument to return a list. (ZyX)
updated for version 7.4.237
Problem: When some patches was not included has("patch-7.4.123") may return
true falsely.
Solution: Check for the specific patch number.
updated for version 7.4.236
Problem: It's not that easy to check the Vim patch version.
Solution: Make has("patch-7.4.123") work. (partly by Marc Weber)
updated for version 7.4.233
Problem: Escaping special characters for using "%" with a shell command is
inconsistant, parenthesis are escaped but spaces are not.
Solution: Only escape "!". (Gary Johnson)
updated for version 7.4.231
Problem: An error in ":options" is not caught by the tests.
Solution: Add a test for ":options". Set $VIMRUNTIME for the tests so that
it uses the current runtime files instead of the installed ones.
Bram Moolenaar [Sun, 30 Mar 2014 14:49:09 +0000 (16:49 +0200)]
updated for version 7.4.229
Problem: Using ":let" for listing variables and the second one is a curly
braces expression may fail.
Solution: Check for an "=" in a better way. (ZyX)
Bram Moolenaar [Fri, 28 Mar 2014 20:49:32 +0000 (21:49 +0100)]
updated for version 7.4.226
Problem: Cursurline highlighting not redrawn when scrolling. (John
Marriott)
Solution: Check for required redraw in two places.
Bram Moolenaar [Thu, 27 Mar 2014 16:02:27 +0000 (17:02 +0100)]
updated for version 7.4.221
Problem: Quickfix doesn't resize on ":copen 20". (issue 199)
Solution: Resize the window when requested. (Christian Brabandt)
Bram Moolenaar [Thu, 27 Mar 2014 11:11:48 +0000 (12:11 +0100)]
updated for version 7.4.219
Problem: When 'relativenumber' or 'cursorline' are set the window is
redrawn much to often. (Patrick Hemmer, Dominique Pelle)
Solution: Check the VALID_CROW flag instead of VALID_WROW.
Bram Moolenaar [Tue, 25 Mar 2014 14:34:48 +0000 (15:34 +0100)]
updated for version 7.4.217
Problem: When src/auto/configure was updated, "make clean" would run
configure pointlessly.
Solution: Do not run configure for "make clean" and "make distclean" when
the make program supports $MAKECMDGOALS. (Ken Takata)
Bram Moolenaar [Tue, 25 Mar 2014 12:03:48 +0000 (13:03 +0100)]
updated for version 7.4.215
Problem: Inconsistency: ":sp foo" does not reload "foo", unless "foo" is
the current buffer. (Liang Li)
Solution: Do not reload the current buffer on a split command.
Bram Moolenaar [Sun, 23 Mar 2014 15:04:02 +0000 (16:04 +0100)]
updated for version 7.4.213
Problem: It's not possible to open a new buffer without creating a swap
file.
Solution: Add the ":noswapfile" modifier. (Christian Brabandt)
Bram Moolenaar [Sun, 23 Mar 2014 14:13:05 +0000 (15:13 +0100)]
updated for version 7.4.212
Problem: Now that the +visual feature is always enabled the #ifdefs for it
are not useful.
Solution: Remove the checks for FEAT_VISUAL.
Bram Moolenaar [Wed, 19 Mar 2014 17:57:54 +0000 (18:57 +0100)]
updated for version 7.4.210
Problem: Visual block mode plus virtual edit doesn't work well with tabs.
(Liang Li)
Solution: Take coladd into account. (Christian Brabandt)
Bram Moolenaar [Wed, 19 Mar 2014 16:41:23 +0000 (17:41 +0100)]
updated for version 7.4.209
Problem: When repeating a filter command "%" and "#" are expanded.
Solution: Escape the command when storing for redo. (Christian Brabandt)
Bram Moolenaar [Wed, 19 Mar 2014 16:32:51 +0000 (17:32 +0100)]
updated for version 7.4.208
Problem: Mercurial picks up some files that are not distributed.
Solution: Add patterns to the ignore list. (Cade Forester)
Bram Moolenaar [Wed, 19 Mar 2014 13:01:57 +0000 (14:01 +0100)]
updated for version 7.4.207
Problem: The cursor report sequence is sometimes not recognized and results
in entering replace mode.
Solution: Also check for the cursor report when not asked for.
Bram Moolenaar [Wed, 12 Mar 2014 20:28:26 +0000 (21:28 +0100)]
updated for version 7.4.205
Problem: ":mksession" writes command to move to second argument while it
does not exist. When it does exist the order might be wrong.
Solution: Use ":argadd" for each argument instead of using ":args" with a
list of names. (Nobuhiro Takasaki)
Bram Moolenaar [Wed, 12 Mar 2014 19:17:51 +0000 (20:17 +0100)]
updated for version 7.4.204
Problem: A mapping where the second byte is 0x80 doesn't work.
Solution: Unescape before checking for incomplete multi-byte char. (Nobuhiro
Takasaki)
Bram Moolenaar [Wed, 12 Mar 2014 18:24:37 +0000 (19:24 +0100)]
updated for version 7.4.202
Problem: MS-Windows: non-ASCII font names don't work.
Solution: Convert between the current code page and 'encoding'. (Ken Takata)
Bram Moolenaar [Wed, 12 Mar 2014 16:08:05 +0000 (17:08 +0100)]
updated for version 7.4.198
Problem: Can't build Vim with Perl when -Dusethreads is not specified for
building Perl, and building Vim with --enable-perlinterp=dynamic.
Solution: Adjust #ifdefs. (Yasuhiro Matsumoto)
Bram Moolenaar [Sun, 23 Feb 2014 22:39:13 +0000 (23:39 +0100)]
updated for version 7.4.191
Problem: Escaping a file name for shell commands can't be done without a
function.
Solution: Add the :S file name modifier.
Bram Moolenaar [Sun, 23 Feb 2014 21:52:40 +0000 (22:52 +0100)]
updated for version 7.4.188
Problem: SIZEOF_LONG clashes with similar defines in header files.
Solution: Rename to a name starting with VIM_. Also for SIZEOF_INT.
Bram Moolenaar [Sat, 22 Feb 2014 22:49:35 +0000 (23:49 +0100)]
updated for version 7.4.187
Problem: Delete that crosses line break splits multi-byte character.
Solution: Advance a character instead of a byte. (Cade Foster)
Bram Moolenaar [Sat, 22 Feb 2014 22:03:55 +0000 (23:03 +0100)]
updated for version 7.4.186
Problem: Insert in Visual mode sometimes gives incorrect results.
(Dominique Pelle)
Solution: Remember the original insert start position. (Christian Brabandt,
Dominique Pelle)
Bram Moolenaar [Sat, 22 Feb 2014 21:18:47 +0000 (22:18 +0100)]
updated for version 7.4.184
Problem: match() does not work properly with a {count} argument.
Solution: Compute the length once and update it. Quit the loop when at the
end. (Hirohito Higashi)
Bram Moolenaar [Sat, 15 Feb 2014 15:17:07 +0000 (16:17 +0100)]
updated for version 7.4.181
Problem: When using 'pastetoggle' the status lines are not updated. (Samuel
Ferencik, Jan Christoph Ebersbach)
Solution: Update the status lines. (Nobuhiro Takasaki)
Bram Moolenaar [Tue, 11 Feb 2014 17:47:27 +0000 (18:47 +0100)]
updated for version 7.4.176
Problem: Dictionary.update() thows an error when used without arguments.
Python programmers don't expect that.
Solution: Make Dictionary.update() without arguments do nothing. (ZyX)
Bram Moolenaar [Tue, 11 Feb 2014 16:06:00 +0000 (17:06 +0100)]
updated for version 7.4.175
Problem: When a wide library function fails, falling back to the non-wide
function may do the wrong thing.
Solution: Check the platform, when the wide function is supported don't fall
back to the non-wide function. (Ken Takata)
Bram Moolenaar [Tue, 11 Feb 2014 14:47:46 +0000 (15:47 +0100)]
updated for version 7.4.173
Problem: When using scrollbind the cursor can end up below the last line.
(mvxxc)
Solution: Reset w_botfill when scrolling up. (Christian Brabandt)
Bram Moolenaar [Tue, 11 Feb 2014 14:23:32 +0000 (15:23 +0100)]
updated for version 7.4.172
Problem: The blowfish code mentions output feedback, but the code is
actually doing cipher feedback.
Solution: Adjust names and comments.
Bram Moolenaar [Tue, 11 Feb 2014 14:10:43 +0000 (15:10 +0100)]
updated for version 7.4.171
Problem: Redo does not set v:count and v:count1.
Solution: Use a separate buffer for redo, so that we can set the counts when
performing redo.
Bram Moolenaar [Wed, 5 Feb 2014 21:13:05 +0000 (22:13 +0100)]
updated for version 7.4.166
Problem: Auto-loading a function for code that won't be executed.
Solution: Do not auto-load when evaluation is off. (Yasuhiro Matsumoto)
Bram Moolenaar [Wed, 5 Feb 2014 13:02:27 +0000 (14:02 +0100)]
updated for version 7.4.164
Problem: Problem with event handling on Windows 8.
Solution: Ignore duplicate WINDOW_BUFFER_SIZE_EVENTs. (Nobuhiro Takasaki)
Bram Moolenaar [Wed, 5 Feb 2014 12:36:54 +0000 (13:36 +0100)]
updated for version 7.4.163
Problem: MS-Windows input doesn't work properly on Windows 7 and earlier.
Solution: Add a check for Windows 8. (Yasuhiro Matsumoto)