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)
Bram Moolenaar [Fri, 24 Jan 2014 18:55:37 +0000 (19:55 +0100)]
updated for version 7.4.160
Problem: Win32: Crash when executing external command.
Solution: Only close the handle when it was created. (Yasuhiro Matsumoto)
Bram Moolenaar [Thu, 23 Jan 2014 21:45:58 +0000 (22:45 +0100)]
updated for version 7.4.159
Problem: Completion hangs when scanning the current buffer after doing
keywords. (Christian Brabandt)
Solution: Set the first match position when starting to scan the current
buffer.
Bram Moolenaar [Thu, 23 Jan 2014 19:09:34 +0000 (20:09 +0100)]
updated for version 7.4.158
Problem: Pattern containing \zs is not handled correctly by substitute().
Solution: Change how an empty match is skipped. (Yukihiro Nakadaira)
Bram Moolenaar [Tue, 14 Jan 2014 14:24:39 +0000 (15:24 +0100)]
updated for version 7.4.149
Problem: Get E685 error when assigning a function to an autoload variable.
(Yukihiro Nakadaira)
Solution: Instead of having a global no_autoload variable, pass an autoload
flag down to where it is used. (ZyX)
Bram Moolenaar [Tue, 14 Jan 2014 12:18:58 +0000 (13:18 +0100)]
updated for version 7.4.147
Problem: Cursor moves to wrong position when using "gj" after "$" and
virtual editing is active.
Solution: Make "gj" behave differently when virtual editing is active.
(Hirohito Higashi)
Bram Moolenaar [Tue, 14 Jan 2014 11:57:05 +0000 (12:57 +0100)]
updated for version 7.4.146
Problem: When starting Vim with "-u NONE" v:oldfiles is NULL.
Solution: Set v:oldfiles to an empty list. (Yasuhiro Matsumoto)
Bram Moolenaar [Tue, 14 Jan 2014 11:33:36 +0000 (12:33 +0100)]
updated for version 7.4.145
Problem: getregtype() does not return zero for unknown register.
Solution: Adjust documention: return empty string for unknown register.
Check the register name to be valid. (Yukihiro Nakadaira)
Bram Moolenaar [Fri, 10 Jan 2014 17:16:07 +0000 (18:16 +0100)]
updated for version 7.4.141
Problem: Problems when building with Borland: st_mode is signed short;
can't build with Python; temp files not ignored by Mercurial;
building with DEBUG doesn't define _DEBUG.
Solution: Fix the problems. (Ken Takata)
Bram Moolenaar [Fri, 10 Jan 2014 15:43:14 +0000 (16:43 +0100)]
updated for version 7.4.140
Problem: Crash when wiping out buffer triggers autocommand that wipes out
only other buffer.
Solution: Do not delete the last buffer, make it empty. (Hirohito Higashi)
Bram Moolenaar [Fri, 10 Jan 2014 14:53:13 +0000 (15:53 +0100)]
updated for version 7.4.139
Problem: Crash when using :cd in autocommand. (François Ingelrest)
Solution: Set w_localdir to NULL after freeing it. (Dominique Pelle)
Bram Moolenaar [Fri, 10 Jan 2014 12:51:42 +0000 (13:51 +0100)]
updated for version 7.4.137
Problem: Cannot use IME with Windows 8 console.
Solution: Change the user of ReadConsoleInput() and PeekConsoleInput().
(Yasuhiro Matsumoto)
Bram Moolenaar [Fri, 10 Jan 2014 12:05:20 +0000 (13:05 +0100)]
updated for version 7.4.136
Problem: MS-Windows: When saving a file with a UNC path the file becomes
read-only.
Solution: Don't mix up Win32 attributes and Unix attributes. (Ken Takata)
Bram Moolenaar [Sat, 14 Dec 2013 12:06:17 +0000 (13:06 +0100)]
updated for version 7.4.131
Problem: Syncbind causes E315 errors in some situations. (Liang Li)
Solution: Set and restore curbuf in ex_syncbind(). (Christian Brabandt)
Bram Moolenaar [Sat, 14 Dec 2013 11:48:58 +0000 (12:48 +0100)]
updated for version 7.4.130
Problem: Relative line numbers mix up windows when using folds.
Solution: Use hasFoldingWin() instead of hasFolding(). (Lech Lorens)
Bram Moolenaar [Wed, 11 Dec 2013 16:58:35 +0000 (17:58 +0100)]
updated for version 7.4.122
Problem: Win32: When 'encoding' is set to "utf-8" and the active codepage
is cp932 then ":grep" and other commands don't work for multi-byte
characters.
Solution: (Yasuhiro Matsumoto)
Bram Moolenaar [Wed, 11 Dec 2013 14:52:01 +0000 (15:52 +0100)]
updated for version 7.4.118
Problem: It's possible that redrawing the status lines causes
win_redr_custom() to be called recursively.
Solution: Protect against recursiveness. (Yasuhiro Matsumoto)
Bram Moolenaar [Wed, 11 Dec 2013 14:06:40 +0000 (15:06 +0100)]
updated for version 7.4.117
Problem: Can't build with Cygwin/MingW and Perl 5.18.
Solution: Add a linker argument for the Perl library. (Cesar Romani)
Adjust CFLAGS and LIB. (Cesar Romani)
Move including inline.h further down. (Ken Takata)
Bram Moolenaar [Wed, 11 Dec 2013 13:55:01 +0000 (14:55 +0100)]
updated for version 7.4.116
Problem: When a mapping starts with a space, the typed space does not show
up for 'showcmd'.
Solution: Show "<20>". (Brook Hong)
Bram Moolenaar [Wed, 11 Dec 2013 12:21:51 +0000 (13:21 +0100)]
updated for version 7.4.115
Problem: When using Zsh expanding ~abc doesn't work when the result
contains a space.
Solution: Off-by-one error in detecting the NUL. (Pavol Juhas)
Bram Moolenaar [Sat, 7 Dec 2013 13:32:09 +0000 (14:32 +0100)]
updated for version 7.4.112
Problem: The defaults for 'directory' and 'backupdir' on MS-Windows do not
include a directory that exists.
Solution: Use $TEMP.
Bram Moolenaar [Thu, 28 Nov 2013 18:27:30 +0000 (19:27 +0100)]
updated for version 7.4.110
Problem: "gUgn" cannot be repeeated. (Dimitar Dimitrov)
Solution: Don't put "gn" in a different order in the redo buffer. Restore
'wrapscan' when the pattern isn't found. (Christian Wellenbrock)
Bram Moolenaar [Thu, 28 Nov 2013 17:53:52 +0000 (18:53 +0100)]
updated for version 7.4.109
Problem: ColorScheme autocommand matches with the current buffer name.
Solution: Match with the colorscheme name. (Christian Brabandt)
Bram Moolenaar [Thu, 28 Nov 2013 16:04:43 +0000 (17:04 +0100)]
updated for version 7.4.107
Problem: Python: When vim.eval() encounters a Vim error, a try/catch in the
Python code doesn't catch it. (Yggdroot Chen)
Solution: Throw exceptions on errors in vim.eval(). (ZyX)
Bram Moolenaar [Thu, 28 Nov 2013 13:36:33 +0000 (14:36 +0100)]
updated for version 7.4.105
Problem: Completing a tag pattern may give an error for invalid pattern.
Solution: Suppress the error, just return no matches.
Bram Moolenaar [Thu, 21 Nov 2013 17:13:37 +0000 (18:13 +0100)]
updated for version 7.4.103
Problem: Dos installer uses an old way to escape spaces in the diff
command.
Solution: Adjust the quoting to the new default shellxquote. (Ben Fritz)
Bram Moolenaar [Thu, 21 Nov 2013 16:13:00 +0000 (17:13 +0100)]
updated for version 7.4.101
Problem: Using \1 in pattern goes one line too far. (Bohr Shaw, John Little)
Solution: Only advance the match end for the matched characters in the last
line.
Bram Moolenaar [Thu, 21 Nov 2013 15:03:40 +0000 (16:03 +0100)]
updated for version 7.4.100
Problem: NFA regexp doesn't handle backreference correctly. (Ryuichi
Hayashida, Urtica Dioica)
Solution: Always add NFA_SKIP, also when it already exists at the start
position.
Bram Moolenaar [Thu, 21 Nov 2013 13:40:04 +0000 (14:40 +0100)]
updated for version 7.4.099
Problem: Append in blockwise Visual mode with "$" is wrong.
Solution: After "$" don't use the code that checks if the cursor was moved.
(Hirohito Higashi, Ken Takata)
Bram Moolenaar [Thu, 21 Nov 2013 13:21:40 +0000 (14:21 +0100)]
updated for version 7.4.098
Problem: When using ":'<,'>del" errors may be given for the visual line
numbers being out of range.
Solution: Reset Visual mode in ":del". (Lech Lorens)
Bram Moolenaar [Thu, 21 Nov 2013 12:24:41 +0000 (13:24 +0100)]
updated for version 7.4.097
Problem: Unexpected behavior change related to 'virtualedit'. (Ingo Karkat)
Solution: Update the valid cursor position. (Christian Brabandt)
Bram Moolenaar [Sun, 17 Nov 2013 19:32:54 +0000 (20:32 +0100)]
updated for version 7.4.094
Problem: Configure may not find that -lint is needed for gettext().
Solution: Check for gettext() with empty $LIBS. (Thomas De Schampheleire)
Bram Moolenaar [Sun, 17 Nov 2013 19:17:12 +0000 (20:17 +0100)]
updated for version 7.4.093
Problem: Configure can't use LuaJIT on ubuntu 12.04.
Solution: Adjust the configure regexp that locates the version number.
(Charles Strahan)
Bram Moolenaar [Tue, 12 Nov 2013 04:28:26 +0000 (05:28 +0100)]
updated for version 7.4.090
Problem: Win32: When a directory name contains an exclamation mark,
completion doesn't complete the contents of the directory.
Solution: Escape the exclamation mark. (Jan Stocker)
Bram Moolenaar [Tue, 12 Nov 2013 04:12:03 +0000 (05:12 +0100)]
updated for version 7.4.089
Problem: When editing a file in a directory mounted through sshfs Vim
doesn't set the security context on a renamed file.
Solution: Add mch_copy_sec() to vim_rename(). (Peter Backes)
Bram Moolenaar [Tue, 12 Nov 2013 03:44:01 +0000 (04:44 +0100)]
updated for version 7.4.088
Problem: When spell checking is enabled Asian characters are always marked
as error.
Solution: When 'spelllang' contains "cjk" do not mark Asian characters as
error. (Ken Takata)
Bram Moolenaar [Mon, 11 Nov 2013 03:25:53 +0000 (04:25 +0100)]
updated for version 7.4.086
Problem: Skipping over an expression when not evaluating it does not work
properly for dict members.
Solution: Skip over unrecognized expression. (ZyX)
Bram Moolenaar [Mon, 11 Nov 2013 00:29:22 +0000 (01:29 +0100)]
updated for version 7.4.085
Problem: When inserting text in Visual block mode and moving the cursor the
wrong text gets repeated in other lines.
Solution: Use the '[ mark to find the start of the actually inserted text.
(Christian Brabandt)
Bram Moolenaar [Sat, 9 Nov 2013 04:30:26 +0000 (05:30 +0100)]
updated for version 7.4.083
Problem: It's hard to avoid adding a used pattern to the search history.
Solution: Add the ":keeppatterns" modifier. (Christian Brabandt)
Bram Moolenaar [Sat, 9 Nov 2013 02:31:51 +0000 (03:31 +0100)]
updated for version 7.4.082
Problem: Using "gf" in a changed buffer suggests adding "!", which is not
possible. (Tim Chase)
Solution: Pass a flag to check_changed() wether adding ! make sense.
Bram Moolenaar [Fri, 8 Nov 2013 03:30:20 +0000 (04:30 +0100)]
updated for version 7.4.079
Problem: A script cannot detect whether 'hlsearch' highlighting is actually
displayed.
Solution: Add the "v:hlsearch" variable. (ZyX)