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 [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 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 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 [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 15:04:57 +0000 (16:04 +0100)]
updated for version 7.4.637
Problem: Incorrectly read the number of buffer for which an autocommand
should be registered.
Solution: Reverse check for "<buffer=abuf>". (Lech Lorens)
Bram Moolenaar [Tue, 17 Feb 2015 14:43:57 +0000 (15:43 +0100)]
updated for version 7.4.636
Problem: A search with end offset gets stuck at end of file. (Gary Johnson)
Solution: When a search doesn't move the cursor repeat it with a higher
count. (Christian Brabandt)
Bram Moolenaar [Tue, 17 Feb 2015 13:15:19 +0000 (14:15 +0100)]
updated for version 7.4.635
Problem: If no NL or CR is found in the first block of a file then the
'fileformat' may be set to "mac". (Issue 77)
Solution: Check if a CR was found. (eswald)
Bram Moolenaar [Tue, 17 Feb 2015 10:11:48 +0000 (11:11 +0100)]
updated for version 7.4.631
Problem: The default conceal character is documented to be a space but it's
initially a dash. (Christian Brabandt)
Solution: Make the intial value a space.
Bram Moolenaar [Tue, 17 Feb 2015 09:58:25 +0000 (10:58 +0100)]
updated for version 7.4.630
Problem: When using Insert mode completion combined with autocommands the
redo command may not work.
Solution: Do not save the redo buffer when executing autocommands. (Yasuhiro
Matsumoto)
Bram Moolenaar [Tue, 10 Feb 2015 17:18:17 +0000 (18:18 +0100)]
updated for version 7.4.623
Problem: Crash with pattern: \(\)\{80000} (Dominique Pelle)
Solution: When the max limit is large fall back to the old engine.
Bram Moolenaar [Tue, 3 Feb 2015 16:10:06 +0000 (17:10 +0100)]
updated for version 7.4.615
Problem: Vim hangs when freeing a lot of objects.
Solution: Do not go back to the start of the list every time. (Yasuhiro
Matsumoto and Ariya Mizutani)
Bram Moolenaar [Tue, 3 Feb 2015 11:55:18 +0000 (12:55 +0100)]
updated for version 7.4.609
Problem: For complicated list and dict use the garbage collector can run
out of stack space.
Solution: Use a stack of dicts and lists to be marked, thus making it
iterative instead of recursive. (Ben Fritz)
Bram Moolenaar [Tue, 27 Jan 2015 17:44:16 +0000 (18:44 +0100)]
updated for version 7.4.605
Problem: The # register is not writable, it cannot be restored after
jumping around.
Solution: Make the # register writable. (Marcin Szamotulski)
Bram Moolenaar [Tue, 27 Jan 2015 15:39:29 +0000 (16:39 +0100)]
updated for version 7.4.603
Problem: 'foldcolumn' may be set such that it fills the whole window, not
leaving space for text.
Solution: Reduce the foldcolumn width when there is not sufficient room.
(idea by Christian Brabandt)
Bram Moolenaar [Tue, 27 Jan 2015 13:40:00 +0000 (14:40 +0100)]
updated for version 7.4.599
Problem: Out-of-memory error.
Solution: Avoid trying to allocate a negative amount of memory, use size_t
instead of int. (Dominique Pelle)
Bram Moolenaar [Tue, 27 Jan 2015 13:09:37 +0000 (14:09 +0100)]
updated for version 7.4.598
Problem: ":tabdo windo echo 'hi'" causes "* register not to be changed.
(Salman Halim)
Solution: Change how clip_did_set_selection is used and add
clipboard_needs_update and global_change_count. (Christian
Brabandt)
Bram Moolenaar [Tue, 27 Jan 2015 12:22:20 +0000 (13:22 +0100)]
updated for version 7.4.594
Problem: Using a block delete while 'breakindent' is set does not work
properly.
Solution: Use "line" instead of "prev_pend" as the first argument to
lbr_chartabsize_adv(). (Hirohito Higashi)
Bram Moolenaar [Tue, 27 Jan 2015 11:59:55 +0000 (12:59 +0100)]
updated for version 7.4.593
Problem: Crash when searching for "x\{0,90000}". (Dominique Pelle)
Solution: Bail out from the NFA engine when the max limit is much higher
than the min limit.
Bram Moolenaar [Tue, 27 Jan 2015 10:26:15 +0000 (11:26 +0100)]
updated for version 7.4.592
Problem: When doing ":e foobar" when already editing "foobar" and 'buftype'
is "nofile" the buffer is cleared. (Xavier de Gaye)
Solution: Do no clear the buffer.
Bram Moolenaar [Thu, 22 Jan 2015 21:41:56 +0000 (22:41 +0100)]
updated for version 7.4.591
Problem: test_listlbr_utf8 fails when the conceal feature is not available.
Solution: Check for the conceal feature. (Kazunobu Kuriyama)
Bram Moolenaar [Tue, 20 Jan 2015 18:39:35 +0000 (19:39 +0100)]
updated for version 7.4.589
Problem: In the MS-Windows console Vim can't handle greek characters when
encoding is utf-8.
Solution: Escape K_NUL. (Yasuhiro Matsumoto)
Bram Moolenaar [Tue, 20 Jan 2015 18:31:02 +0000 (19:31 +0100)]
updated for version 7.4.588
Problem: ":0argedit foo" puts the new argument in the second place instead
of the first.
Solution: Adjust the range type. (Ingo Karkat)
Bram Moolenaar [Tue, 20 Jan 2015 18:01:35 +0000 (19:01 +0100)]
updated for version 7.4.587
Problem: Conceal does not work properly with 'linebreak'. (cs86661)
Solution: Save and restore boguscols. (Christian Brabandt)
Bram Moolenaar [Tue, 20 Jan 2015 16:27:22 +0000 (17:27 +0100)]
updated for version 7.4.586
Problem: Parallel building of the documentation html files is not reliable.
Solution: Remove a cyclic dependency. (Reiner Herrmann)
Bram Moolenaar [Wed, 14 Jan 2015 18:00:38 +0000 (19:00 +0100)]
updated for version 7.4.578
Problem: Using getcurpos() after "$" in an empty line returns a negative
number.
Solution: Don't add one when this would overflow. (Hirohito Higashi)
Bram Moolenaar [Wed, 14 Jan 2015 17:40:28 +0000 (18:40 +0100)]
updated for version 7.4.577
Problem: Matching with a virtual column has a lot of overhead on very long
lines. (Issue 310)
Solution: Bail out early if there can't be a match. (Christian Brabandt)
Also check for CTRL-C at every position.
Bram Moolenaar [Wed, 14 Jan 2015 16:52:30 +0000 (17:52 +0100)]
updated for version 7.4.576
Problem: Redrawing problem with 'relativenumber' and 'linebreak'.
Solution: Temporarily reset 'linebreak' and restore it in more places.
(Christian Brabandt)
Bram Moolenaar [Wed, 14 Jan 2015 15:08:32 +0000 (16:08 +0100)]
updated for version 7.4.573
Problem: Mapping CTRL-C in Visual mode doesn't work. (Ingo Karkat)
Solution: Call get_real_state() instead of using State directly.
Bram Moolenaar [Wed, 14 Jan 2015 11:44:41 +0000 (12:44 +0100)]
updated for version 7.4.569
Problem: Having CTRL-C interrupt or not does not check the mode of the
mapping. (Ingo Karkat)
Solution: Use a bitmask with the map mode. (Christian Brabandt)
Bram Moolenaar [Wed, 14 Jan 2015 10:25:05 +0000 (11:25 +0100)]
updated for version 7.4.568
Problem: Giving an error for ":0wincmd w" is a problem for some plugins.
Solution: Allow the zero in the range. (Marcin Szamotulski)
Bram Moolenaar [Wed, 7 Jan 2015 18:04:28 +0000 (19:04 +0100)]
updated for version 7.4.567
Problem: Non-ascii vertical separater characters are always redrawn.
Solution: Compare only the one byte that's stored. (Thiago Padilha)
Bram Moolenaar [Wed, 7 Jan 2015 14:57:17 +0000 (15:57 +0100)]
updated for version 7.4.565
Problem: Ranges for arguments, buffers, tabs, etc. are not checked to be
valid but limited to the maximum. This can cause the wrong thing
to happen.
Solution: Give an error for an invalid value. (Marcin Szamotulski)
Use windows range for ":wincmd".