Bram Moolenaar [Tue, 9 Jun 2015 16:35:25 +0000 (18:35 +0200)]
patch 7.4.730
Problem: When setting the crypt key and using a swap file, text may be
encrypted twice or unencrypted text remains in the swap file.
(Issue 369)
Solution: Call ml_preserve() before re-encrypting. Set correct index for
next pointer block.
Bram Moolenaar [Thu, 14 May 2015 03:56:09 +0000 (05:56 +0200)]
patch 7.4.729
Problem: Occasional crash with 'list' set.
Solution: Fix off-by-one error. (Christian Brabandt)
Bram Moolenaar [Wed, 6 May 2015 09:33:47 +0000 (11:33 +0200)]
patch 7.4.728
Problem: Can't build with some version of Visual Studio 2015.
Solution: Recognize another version 14 number. (Sinan)
Bram Moolenaar [Wed, 6 May 2015 04:51:50 +0000 (06:51 +0200)]
patch 7.4.727
Problem: Cannot build GvimExt with MingW.
Solution: Add -lgdi32. (KF Leong)
Bram Moolenaar [Tue, 5 May 2015 08:25:16 +0000 (10:25 +0200)]
patch 7.4.726
Problem: Cannot build GvimExt.
Solution: Set APPVER to 5.0. (KF Leong)
Bram Moolenaar [Mon, 4 May 2015 18:19:21 +0000 (20:19 +0200)]
patch 7.4.725
Problem: ":call setreg('"', [])" reports an internal error.
Solution: Make the register empty. (Yasuhiro Matsumoto)
Bram Moolenaar [Mon, 4 May 2015 16:27:36 +0000 (18:27 +0200)]
patch 7.4.724
Problem: Vim icon does not show in Windows context menu. (issue 249)
Solution: Load the icon in GvimExt.
Bram Moolenaar [Mon, 4 May 2015 15:50:33 +0000 (17:50 +0200)]
patch 7.4.723
Problem: For indenting, finding the C++ baseclass can be slow.
Solution: Cache the result. (Hirohito Higashi)
Bram Moolenaar [Mon, 4 May 2015 15:28:22 +0000 (17:28 +0200)]
patch 7.4.722
Problem: 0x202f is not recognized as a non-breaking space character.
Solution: Add 0x202f to the list. (Christian Brabandt)
Bram Moolenaar [Mon, 4 May 2015 14:52:01 +0000 (16:52 +0200)]
patch 7.4.721
Problem: When 'list' is set Visual mode does not highlight anything in
empty lines. (mgaleski)
Solution: Check the value of lcs_eol in another place. (Christian Brabandt)
Bram Moolenaar [Mon, 4 May 2015 14:18:42 +0000 (16:18 +0200)]
patch 7.4.720
Problem: Can't build with Visual Studio 2015.
Solution: Recognize the "version 14" numbers and omit /nodefaultlib when
appropriate. (Paul Moore)
Bram Moolenaar [Mon, 4 May 2015 14:10:26 +0000 (16:10 +0200)]
patch 7.4.719
Problem: Overflow when adding MAXCOL to a pointer.
Solution: Subtract pointers instead. (James McCoy)
Bram Moolenaar [Mon, 4 May 2015 10:34:22 +0000 (12:34 +0200)]
patch 7.4.718
Problem: Autocommands triggered by quickfix cannot get the current title
value.
Solution: Set w:quickfix_title earlier. (Yannick)
Also move the check for a title into the function.
Bram Moolenaar [Mon, 4 May 2015 09:10:27 +0000 (11:10 +0200)]
patch 7.4.717
Problem: ":let list += list" can change a locked list.
Solution: Check for the lock earlier. (Olaf Dabrunz)
Bram Moolenaar [Mon, 4 May 2015 08:46:03 +0000 (10:46 +0200)]
patch 7.4.716
Problem: When using the 'c' flag of ":substitute" and selecting "a" or "l"
at the prompt the flags are not remembered for ":&&". (Ingo
Karkat)
Solution: Save the flag values and restore them. (Hirohito Higashi)
Bram Moolenaar [Mon, 4 May 2015 08:33:15 +0000 (10:33 +0200)]
patch 7.4.715
Problem: Invalid memory access when there are illegal bytes.
Solution: Get the length from the text, not from the character. (Dominique
Pelle)
Bram Moolenaar [Mon, 4 May 2015 07:56:49 +0000 (09:56 +0200)]
patch 7.4.714
Problem: Illegal memory access when there are illegal bytes.
Solution: Check the byte length of the character. (Dominique Pelle)
Bram Moolenaar [Mon, 4 May 2015 07:31:11 +0000 (09:31 +0200)]
patch 7.4.713
Problem: Wrong condition for #ifdef.
Solution: Change USR_EXRC_FILE2 to USR_VIMRC_FILE2. (Mikael Fourrier)
Bram Moolenaar [Wed, 22 Apr 2015 20:18:22 +0000 (22:18 +0200)]
patch 7.4.712
Problem: Missing change in another file.
Solution: Also change message.c
Bram Moolenaar [Tue, 21 Apr 2015 17:10:48 +0000 (19:10 +0200)]
patch 7.4.711
Problem: Missing change in one file.
Solution: Also change option.c
Bram Moolenaar [Tue, 21 Apr 2015 16:33:48 +0000 (18:33 +0200)]
patch 7.4.710
Problem: It is not possible to make spaces visibible in list mode.
Solution: Add the "space" item to 'listchars'. (David Bürgin, issue 350)
Bram Moolenaar [Tue, 21 Apr 2015 16:08:39 +0000 (18:08 +0200)]
patch 7.4.709
Problem: ":tabmove" does not work as documented.
Solution: Make it work consistently. Update documentation and add tests.
(Hirohito Higashi)
Bram Moolenaar [Tue, 21 Apr 2015 14:49:05 +0000 (16:49 +0200)]
patch 7.4.708
Problem: gettext() is called too often.
Solution: Do not call gettext() for messages until they are actually used.
(idea by Yasuhiro Matsumoto)
Bram Moolenaar [Tue, 21 Apr 2015 14:12:06 +0000 (16:12 +0200)]
patch 7.4.707
Problem: Undo files can have their executable bit set.
Solution: Strip of the executable bit. (Mikael Berthe)
Bram Moolenaar [Tue, 21 Apr 2015 13:43:05 +0000 (15:43 +0200)]
patch 7.4.706
Problem: Window drawn wrong when 'laststatus' is zero and there is a
command-line window. (Yclept Nemo)
Solution: Set the status height a bit later. (Christian Brabandt)
Bram Moolenaar [Tue, 21 Apr 2015 13:25:31 +0000 (15:25 +0200)]
patch 7.4.705
Problem: Can't build with Ruby 2.2.
Solution: Add #ifdefs to handle the incompatible change. (Andrei Olsen)
Bram Moolenaar [Tue, 21 Apr 2015 12:02:35 +0000 (14:02 +0200)]
patch 7.4.704
Problem: Searching for a character matches an illegal byte and causes
invalid memory access. (Dominique Pelle)
Solution: Do not match an invalid byte when search for a character in a
string. Fix equivalence classes using negative numbers, which
result in illegal bytes.
Bram Moolenaar [Fri, 17 Apr 2015 20:08:16 +0000 (22:08 +0200)]
patch 7.4.703
Problem: Compiler warning for start_dir unused when building unittests.
Solution: Move start_dir inside the #ifdef.
Bram Moolenaar [Thu, 16 Apr 2015 20:51:22 +0000 (22:51 +0200)]
patch 7.4.702
Problem: Joining an empty list does uneccessary work.
Solution: Let join() return early. (Marco Hinz)
Bram Moolenaar [Wed, 15 Apr 2015 12:27:49 +0000 (14:27 +0200)]
patch 7.4.701
Problem: Compiler warning for using uninitialized variable. (Yasuhiro
Matsumoto)
Solution: Initialize it.
Bram Moolenaar [Wed, 15 Apr 2015 12:13:18 +0000 (14:13 +0200)]
Remove local-additions entries from help.txt.
Bram Moolenaar [Wed, 15 Apr 2015 11:31:24 +0000 (13:31 +0200)]
Updated runtime files.
Bram Moolenaar [Wed, 15 Apr 2015 10:43:50 +0000 (12:43 +0200)]
patch 7.4.700
Problem: Fold can't be opened after ":move". (Ein Brown)
Solution: Delete the folding information and update it afterwards.
(Christian Brabandt)
Bram Moolenaar [Mon, 13 Apr 2015 18:52:36 +0000 (20:52 +0200)]
patch 7.4.699
Problem: E315 when trying to delete a fold. (Yutao Yuan)
Solution: Make sure the fold doesn't go beyond the last buffer line.
(Christian Brabandt)
Bram Moolenaar [Mon, 13 Apr 2015 14:16:38 +0000 (16:16 +0200)]
patch 7.4.698
Problem: Various problems with locked and fixed lists and dictionaries.
Solution: Disallow changing locked items, fix a crash, add tests. (Olaf
Dabrunz)
Bram Moolenaar [Mon, 13 Apr 2015 13:37:56 +0000 (15:37 +0200)]
patch 7.4.697
Problem: The filename used for ":profile" must be given literally.
Solution: Expand "~" and environment variables. (Marco Hinz)
Bram Moolenaar [Mon, 13 Apr 2015 13:28:12 +0000 (15:28 +0200)]
patch 7.4.696
Problem: Not freeing memory when encountering an error.
Solution: Free the stack before returning. (Eliseo Martínez)
Bram Moolenaar [Mon, 13 Apr 2015 12:45:27 +0000 (14:45 +0200)]
patch 7.4.695
Problem: Out-of-bounds read, dectected by Coverity.
Solution: Remember the value of cmap for the first matching encoding. Reset
cmap to that value if first matching encoding is going to be used.
(Eliseo Martínez)
Bram Moolenaar [Mon, 13 Apr 2015 12:22:40 +0000 (14:22 +0200)]
More updated runtime files.
Bram Moolenaar [Mon, 13 Apr 2015 10:58:12 +0000 (12:58 +0200)]
patch 7.4.694
Problem: Running tests changes the .viminfo file.
Solution: Disable viminfo in the text objects test.
Bram Moolenaar [Mon, 13 Apr 2015 10:43:06 +0000 (12:43 +0200)]
Updated runtime files.
Bram Moolenaar [Mon, 13 Apr 2015 10:39:22 +0000 (12:39 +0200)]
patch 7.4.693
Problem: Session file is not correct when there are multiple tab pages.
Solution: Reset the current window number for each tab page. (Jacob Niehus)
Bram Moolenaar [Thu, 9 Apr 2015 20:08:21 +0000 (22:08 +0200)]
patch 7.4.692 for Problem: Defining SOLARIS for no good reason. (Danek Duvall)
Solution: Remove it.
Bram Moolenaar [Fri, 3 Apr 2015 15:59:43 +0000 (17:59 +0200)]
patch 7.4.691 for Problem: Can't build with MzScheme.
Solution: Change "cwd" into the global variable "start_dir".
Bram Moolenaar [Fri, 3 Apr 2015 15:11:45 +0000 (17:11 +0200)]
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
redraw when using CTRL-U. (Knil Ino)
Solution: Update pointers after calling ga_grow().
Bram Moolenaar [Fri, 3 Apr 2015 12:56:49 +0000 (14:56 +0200)]
updated for version 7.4.689
Problem: On MS-Windows, when 'autochdir' is set, diff mode with files in
different directories does not work. (Axel Bender)
Solution: Remember the current directory and use it where needed. (Christian
Brabandt)
Bram Moolenaar [Tue, 31 Mar 2015 17:18:00 +0000 (19:18 +0200)]
updated for version 7.4.688
Problem: When "$" is in 'cpo' the popup menu isn't undrawn correctly.
(Issue 166)
Solution: When using the popup menu remove the "$".
Bram Moolenaar [Tue, 31 Mar 2015 16:31:03 +0000 (18:31 +0200)]
updated for version 7.4.687
Problem: There is no way to use a different in Replace mode for a terminal.
Solution: Add t_SR. (Omar Sandoval)
Bram Moolenaar [Tue, 31 Mar 2015 15:46:22 +0000 (17:46 +0200)]
updated for version 7.4.686
Problem: "zr" and "zm" do not take a count.
Solution: Implement the count, restrict the fold level to the maximum
nesting depth. (Marcin Szamotulski)
Bram Moolenaar [Tue, 31 Mar 2015 12:17:31 +0000 (14:17 +0200)]
updated for version 7.4.685
Problem: When there are illegal utf-8 characters the old regexp engine may
go past the end of a string.
Solution: Only advance to the end of the string. (Dominique Pelle)
Bram Moolenaar [Tue, 31 Mar 2015 11:33:08 +0000 (13:33 +0200)]
updated for version 7.4.684
Problem: When starting several Vim instances in diff mode, the temp files
used may not be unique. (Issue 353)
Solution: Add an argument to vim_tempname() to keep the file.
Bram Moolenaar [Wed, 25 Mar 2015 19:24:04 +0000 (20:24 +0100)]
updated for version 7.4.683
Problem: Typo in the vimtutor command.
Solution: Fix the typo. (Corey Farwell, github pull 349)
Bram Moolenaar [Tue, 24 Mar 2015 17:22:41 +0000 (18:22 +0100)]
updated for version 7.4.682
Problem: The search highlighting and match highlighting replaces the
cursorline highlighting, this doesn't look good.
Solution: Combine the highlighting. (Yasuhiro Matsumoto)
Bram Moolenaar [Tue, 24 Mar 2015 16:57:45 +0000 (17:57 +0100)]
Add test files for patch 7.4.680.
Bram Moolenaar [Tue, 24 Mar 2015 16:57:12 +0000 (17:57 +0100)]
updated for version 7.4.681
Problem: MS-Windows: When Vim is minimized the window height is computed
incorrectly.
Solution: When minimized use the previously computed size. (Ingo Karkat)
Bram Moolenaar [Tue, 24 Mar 2015 16:49:51 +0000 (17:49 +0100)]
updated for version 7.4.680
Problem: CTRL-W in Insert mode does not work well for multi-byte
characters.
Solution: Use mb_get_class(). (Yasuhiro Matsumoto)
Bram Moolenaar [Tue, 24 Mar 2015 16:12:19 +0000 (17:12 +0100)]
updated for version 7.4.679
Problem: Color values greater than 255 cause problems on MS-Windows.
Solution: Truncate to 255 colors. (Yasuhiro Matsumoto)
Bram Moolenaar [Tue, 24 Mar 2015 15:48:58 +0000 (16:48 +0100)]
updated for version 7.4.678
Problem: When using --remote the directory may end up being wrong.
Solution: Use localdir() to find out what to do. (Xaizek)
Bram Moolenaar [Tue, 24 Mar 2015 14:14:27 +0000 (15:14 +0100)]
updated for version 7.4.677
Problem: Configure fails when specifying a python-config-dir. (Lcd)
Solution: Check if PYTHONFRAMEWORKPREFIX is set.
Bram Moolenaar [Tue, 24 Mar 2015 11:21:33 +0000 (12:21 +0100)]
updated for version 7.4.676
Problem: On Mac, when not using the default Python framework configure
doesn't do the right thing.
Solution: Use a linker search path. (Kazunobu Kuriyama)
Bram Moolenaar [Tue, 24 Mar 2015 10:46:30 +0000 (11:46 +0100)]
updated for version 7.4.675
Problem: When a FileReadPost autocommand moves the cursor inside a line it
gets moved back.
Solution: When checking whether an autocommand moved the cursor store the
column as well. (Christian Brabandt)
Bram Moolenaar [Sat, 21 Mar 2015 21:18:41 +0000 (22:18 +0100)]
updated for version 7.4.674
Problem: Missing changes in one file.
Solution: Also change the win32 file.
Bram Moolenaar [Sat, 21 Mar 2015 20:46:13 +0000 (21:46 +0100)]
updated for version 7.4.673
Problem: The first syntax entry gets sequence number zero, which doesn't
work. (Clinton McKay)
Solution: Start at number one. (Bjorn Linse)
Bram Moolenaar [Sat, 21 Mar 2015 17:06:14 +0000 (18:06 +0100)]
Update runtime files.
Bram Moolenaar [Sat, 21 Mar 2015 16:32:19 +0000 (17:32 +0100)]
updated for version 7.4.672
Problem: When completing a shell command, directories in the current
directory are not listed.
Solution: When "." is not in $PATH also look in the current directory for
directories.
Bram Moolenaar [Sat, 21 Mar 2015 13:20:16 +0000 (14:20 +0100)]
updated for version 7.4.671
Problem: Warning for shadowing a variable.
Solution: Rename off to mb_off. (Kazunobu Kuriyama)
Bram Moolenaar [Fri, 20 Mar 2015 18:06:06 +0000 (19:06 +0100)]
updated for version 7.4.670
Problem: Using 'cindent' for Javascript is less than perfect.
Solution: Improve indenting of continuation lines. (Hirohito Higashi)
Bram Moolenaar [Fri, 20 Mar 2015 17:11:48 +0000 (18:11 +0100)]
updated for version 7.4.669
Problem: When netbeans is active the sign column always shows up.
Solution: Only show the sign column once a sign has been added. (Xavier de
Gaye)
Bram Moolenaar [Fri, 20 Mar 2015 16:36:42 +0000 (17:36 +0100)]
updated for version 7.4.668
Problem: Can't use a glob pattern as a regexp pattern.
Solution: Add glob2regpat(). (Christian Brabandt)
Bram Moolenaar [Fri, 20 Mar 2015 16:16:27 +0000 (17:16 +0100)]
updated for version 7.4.667
Problem: 'colorcolumn' isn't drawn in a closed fold while 'cursorcolumn'
is. (Carlos Pita)
Solution: Make it consistent. (Christian Brabandt)
Bram Moolenaar [Fri, 20 Mar 2015 15:26:54 +0000 (16:26 +0100)]
updated for version 7.4.666
Problem: There is a chance that Vim may lock up.
Solution: Handle timer events differently. (Aaron Burrow)
Bram Moolenaar [Fri, 20 Mar 2015 14:58:52 +0000 (15:58 +0100)]
updated for version 7.4.665
Problem: 'linebreak' does not work properly with multi-byte characters.
Solution: Compute the pointer offset with mb_head_off(). (Yasuhiro
Matsumoto)
Bram Moolenaar [Fri, 20 Mar 2015 14:42:10 +0000 (15:42 +0100)]
updated for version 7.4.664
Problem: When 'compatible' is reset 'numberwidth' is set to 4, but the
effect doesn't show until a change is made.
Solution: Check if 'numberwidth' changed. (Christian Brabandt)
Bram Moolenaar [Sat, 14 Mar 2015 14:35:52 +0000 (15:35 +0100)]
updated for version 7.4.663
Problem: When using netbeans a buffer is not found in another tab.
Solution: When 'switchbuf' is set to "usetab" then switch to another tab
when possible. (Xavier de Gaye)
Bram Moolenaar [Fri, 13 Mar 2015 14:03:00 +0000 (15:03 +0100)]
updated for version 7.4.662
Problem: When 'M' is in the 'cpo' option then selecting a text object in
parenthesis does not work correctly.
Solution: Keep 'M' in 'cpo' when finding a match. (Hirohito Higashi)
Bram Moolenaar [Fri, 13 Mar 2015 12:24:23 +0000 (13:24 +0100)]
updated for version 7.4.661
Problem: Using "0 CTRL-D" in Insert mode may have CursorHoldI interfere.
(Gary Johnson)
Solution: Don't store K_CURSORHOLD as the last character. (Christian
Brabandt)
Bram Moolenaar [Fri, 13 Mar 2015 11:53:37 +0000 (12:53 +0100)]
updated for version 7.4.660
Problem: Using freed memory when g:colors_name is changed in the colors
script. (oni-link)
Solution: Make a copy of the variable value.
Bram Moolenaar [Fri, 13 Mar 2015 10:23:50 +0000 (11:23 +0100)]
updated for version 7.4.659
Problem: When 'ruler' is set the preferred column is reset. (Issue 339)
Solution: Don't set curswant when redrawing the status lines.
Bram Moolenaar [Sun, 8 Mar 2015 13:48:49 +0000 (14:48 +0100)]
updated for version 7.4.658
Problem: 'formatexpr' is evaluated too often.
Solution: Only invoke it when beyond the 'textwidth' column, as it is
documented. (James McCoy)
Bram Moolenaar [Fri, 6 Mar 2015 21:00:11 +0000 (22:00 +0100)]
updated for version 7.4.657
Problem: Compiler warnings for pointer mismatch.
Solution: Add a typecast. (John Marriott)
Bram Moolenaar [Thu, 5 Mar 2015 20:21:19 +0000 (21:21 +0100)]
updated for version 7.4.656
Problem: Missing changes for glob() in one file.
Solution: Add the missing changes.
Bram Moolenaar [Thu, 5 Mar 2015 18:57:49 +0000 (19:57 +0100)]
updated for version 7.4.655
Problem: Text deleted by "dit" depends on indent of closing tag.
(Jan Parthey)
Solution: Do not adjust oap->end in do_pending_operator(). (Christian
Brabandt)
Bram Moolenaar [Thu, 5 Mar 2015 18:35:25 +0000 (19:35 +0100)]
updated for version 7.4.654
Problem: glob() and globpath() cannot include links to non-existing files.
(Charles Campbell)
Solution: Add an argument to include all links with glob(). (James McCoy)
Also for globpath().
Bram Moolenaar [Thu, 5 Mar 2015 17:08:43 +0000 (18:08 +0100)]
updated for version 7.4.653
Problem: Insert mode completion with complete() may have CTRL-L work like
CTRL-P.
Solution: Handle completion with complete() differently. (Yasuhiro
Matsumoto, Christian Brabandt, Hirohito Higashi)
Bram Moolenaar [Thu, 5 Mar 2015 16:51:15 +0000 (17:51 +0100)]
updated for version 7.4.652
Problem: Xxd lacks a few features.
Solution: Use 8 characters for the file position. Add the -e and -o
arguments. (Vadim Vygonets)
Bram Moolenaar [Thu, 5 Mar 2015 16:16:06 +0000 (17:16 +0100)]
updated for version 7.4.651
Problem: Can't match "%>80v" properly for multi-byte characters.
Solution: Multiply the character number by the maximum number of bytes in a
character. (Yasuhiro Matsumoto)
Bram Moolenaar [Thu, 5 Mar 2015 15:47:20 +0000 (16:47 +0100)]
updated for version 7.4.650
Problem: Configure check may fail because the dl library is not used.
Solution: Put "-ldl" in LIBS rather than LDFLAGS. (Oazki Kiichi)
Bram Moolenaar [Thu, 5 Mar 2015 12:36:00 +0000 (13:36 +0100)]
updated for version 7.4.649
Problem: Compiler complains about ignoring return value of fwrite().
(Michael Jarvis)
Solution: Add (void).
Bram Moolenaar [Mon, 2 Mar 2015 22:16:07 +0000 (23:16 +0100)]
Update a few runtime files.
Bram Moolenaar [Sat, 28 Feb 2015 12:11:45 +0000 (13:11 +0100)]
Updated runtime files.
Bram Moolenaar [Fri, 27 Feb 2015 21:12:34 +0000 (22:12 +0100)]
updated for version 7.4.648
Problem: Tests broken on MS-Windows.
Solution: Delete wrong copy line. (Ken Takata)
Bram Moolenaar [Fri, 27 Feb 2015 20:11:02 +0000 (21:11 +0100)]
updated for version 7.4.647
Problem: After running the tests on MS-Windows many files differ from their
originals as they were checked out.
Solution: Use a temp directory for executing the tests. (Ken Takata, Taro
Muraoka)
Bram Moolenaar [Fri, 27 Feb 2015 19:33:37 +0000 (20:33 +0100)]
updated for version 7.4.646
Problem: ":bufdo" may start at a deleted buffer.
Solution: Find the first not deleted buffer. (Shane Harper)
Bram Moolenaar [Fri, 27 Feb 2015 18:34:56 +0000 (19:34 +0100)]
updated for version 7.4.645
Problem: When splitting the window in a BufAdd autocommand while still in
the first, empty buffer the window count is wrong.
Solution: Do not reset b_nwindows to zero and don't increment it.
Bram Moolenaar [Fri, 27 Feb 2015 17:25:16 +0000 (18:25 +0100)]
updated for version 7.4.644
Problem: Stratus VOS doesn't have sync().
Solution: Use fflush(). (Karli Aurelia)
Bram Moolenaar [Fri, 27 Feb 2015 16:48:09 +0000 (17:48 +0100)]
updated for version 7.4.643
Problem: Using the default file format for Mac files. (Issue 77)
Solution: Reset the try_mac counter in the right place. (Oswald)
Bram Moolenaar [Fri, 27 Feb 2015 16:19:10 +0000 (17:19 +0100)]
updated for version 7.4.642
Problem: When using "gf" escaped spaces are not handled.
Solution: Recognize escaped spaces.
Bram Moolenaar [Fri, 27 Feb 2015 14:03:58 +0000 (15:03 +0100)]
updated for version 7.4.641
Problem: The tabline menu was using ":999tabnew" which is now invalid.
Solution: Use ":$tabnew" instead. (Florian Degner)
Bram Moolenaar [Tue, 17 Feb 2015 16:50:26 +0000 (17:50 +0100)]
updated for version 7.4.640
Problem: After deleting characters in Insert mode such that lines are
joined undo does not work properly. (issue 324)
Solution: Use Insstart instead of Insstart_orig. (Christian Brabandt)
Bram Moolenaar [Tue, 17 Feb 2015 16:26:10 +0000 (17:26 +0100)]
updated for version 7.4.639
Problem: Combination of linebreak and conceal doesn't work well.
Solution: Fix the display problems. (Christian Brabandt)