Bram Moolenaar [Tue, 16 Nov 2010 13:06:08 +0000 (14:06 +0100)]
updated for version 7.3.057
Problem: Segfault with command line abbreviation. (Randy Morris)
Solution: Don't retrigger the abbreviation when abandoning the command line.
Continue editing the command line after the error.
Bram Moolenaar [Wed, 10 Nov 2010 19:41:57 +0000 (20:41 +0100)]
updated for version 7.3.055
Problem: Recursively nested lists and dictionaries cause a near-endless
loop when comparing them with a copy. (ZyX)
Solution: Limit recursiveness in a way that non-recursive structures can
still be nested very deep.
Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok
Bram Moolenaar [Wed, 10 Nov 2010 18:00:01 +0000 (19:00 +0100)]
updated for version 7.3.054
Problem: Can define a user command for :Print, but it doesn't work. (Aaron
Thoma)
Solution: Let user command :Print overrule the builtin command (Christian
Brabandt) Disallow :X and :Next as a user defined command.
Bram Moolenaar [Wed, 10 Nov 2010 16:11:33 +0000 (17:11 +0100)]
updated for version 7.3.053
Problem: complete() function doesn't reset complete direction. Can't use
an empty string in the list of matches.
Solution: Set compl_direction to FORWARD. Add "empty" key to allow empty
words. (Kikuchan)
Bram Moolenaar [Wed, 10 Nov 2010 15:54:20 +0000 (16:54 +0100)]
updated for version 7.3.052
Problem: When 'completefunc' opens a new window all kinds of errors follow.
(Xavier Deguillard)
Solution: When 'completefunc' goes to another window or buffer and when it
deletes text abort completion. Add a test for 'completefunc'.
Bram Moolenaar [Wed, 10 Nov 2010 14:37:05 +0000 (15:37 +0100)]
updated for version 7.3.051
Problem: Crash when /home/mool/bin:/usr/local/sbin:/usr/local/bin:/home/mool/java/jdk/bin:/bin:/sbin:/usr/bin:/usr/games:/usr/sbin:/usr/X11R6/bin:/usr/local/linux-jdk1.3.1/bin:/usr/local/lib/python2.2/Tools/idle is empty.
Solution: Check for vim_getenv() returning NULL. (Yasuhiro Matsumoto)
Bram Moolenaar [Wed, 3 Nov 2010 18:32:42 +0000 (19:32 +0100)]
updated for version 7.3.048
Problem: ":earlier 1f" doesn't work after loading undo file.
Solution: Set b_u_save_nr_cur when loading an undo file. (Christian
Brabandt)
Fix only showing time in ":undolist"
Bram Moolenaar [Wed, 27 Oct 2010 15:11:15 +0000 (17:11 +0200)]
updated for version 7.3.044
Problem: The preview window opened by the popup menu is larger than
specified with 'previewheight'. (Benjamin Haskell)
Solution: Use 'previewheight' if it's set and smaller.
Bram Moolenaar [Wed, 27 Oct 2010 14:18:00 +0000 (16:18 +0200)]
updated for version 7.3.042
Problem: No spell highlighting when re-using an empty buffer.
Solution: Clear the spell checking info only when clearing the options for a
buffer. (James Vega)
Bram Moolenaar [Wed, 27 Oct 2010 14:01:27 +0000 (16:01 +0200)]
updated for version 7.3.041
Problem: Compiler warning for accessing mediumVersion. (Tony Mechelynck)
Solution: Use the pointer instead of the array itself. (Dominique Pelle)
Bram Moolenaar [Wed, 27 Oct 2010 11:37:44 +0000 (13:37 +0200)]
updated for version 7.3.040
Problem: Comparing strings while ignoring case goes beyond end of the
string when there are illegal bytes. (Dominique Pelle)
Solution: Explicitly check for illegal bytes.
Bram Moolenaar [Wed, 27 Oct 2010 10:58:23 +0000 (12:58 +0200)]
updated for version 7.3.039
Problem: Crash when using skk.vim plugin.
Solution: Get length of expression evaluation result only after checking for
NULL. (Noriaki Yagi, Dominique Pelle)
Bram Moolenaar [Wed, 27 Oct 2010 10:15:33 +0000 (12:15 +0200)]
updated for version 7.3.036
Problem: Win32 GUI: When building without menus, the font for dialogs and
tab page headers also changes.
Solution: Define USE_SYSMENU_FONT always. (Harig G.)
Bram Moolenaar [Sat, 23 Oct 2010 12:02:54 +0000 (14:02 +0200)]
updated for version 7.3.034
Problem: Win32: may be loading .dll from the wrong directory.
Solution: Go to the Vim executable directory when opening a library.
Bram Moolenaar [Wed, 20 Oct 2010 19:23:33 +0000 (21:23 +0200)]
updated for version 7.3.032
Problem: maparg() doesn't return the flags, such as <buffer>, <script>,
<silent>. These are needed to save and restore a mapping.
Solution: Improve maparg(). (also by Christian Brabandt)
Bram Moolenaar [Fri, 15 Oct 2010 18:20:05 +0000 (20:20 +0200)]
updated for version 7.3.029
Problem: ":sort n" sorts lines without a number as number zero. (Beeyawned)
Solution: Make lines without a number sort before lines with a number. Also
fix sorting negative numbers.
Bram Moolenaar [Thu, 14 Oct 2010 19:29:37 +0000 (21:29 +0200)]
updated for version 7.3.028
Problem: Signs don't show up. (Charles Campbell)
Solution: Don't use negative numbers. Also assign a number to signs that
have a name of all digits to avoid using a sign number twice.
Bram Moolenaar [Wed, 13 Oct 2010 18:37:41 +0000 (20:37 +0200)]
updated for version 7.3.027
Problem: Opening a file on a network share is very slow.
Solution: When fixing file name case append "\*" to directory, server and
network share names. (David Anderson, John Beckett)
Bram Moolenaar [Wed, 13 Oct 2010 16:06:47 +0000 (18:06 +0200)]
updated for version 7.3.026
Problem: CTRL-] in a help file doesn't always work. (Tony Mechelynck)
Solution: Don't escape special characters. (Carlo Teubner)
Bram Moolenaar [Wed, 13 Oct 2010 15:50:07 +0000 (17:50 +0200)]
updated for version 7.3.025
Problem: ":mksession" does not square brackets escape file name properly.
Solution: Improve escapging of file names. (partly by Peter Odding)
Bram Moolenaar [Wed, 13 Oct 2010 14:44:23 +0000 (16:44 +0200)]
updated for version 7.3.024
Problem: Named signs do not use a negative number as intended.
Solution: Fix the numbering of named signs. (Xavier de Gaye)
Bram Moolenaar [Wed, 13 Oct 2010 14:22:09 +0000 (16:22 +0200)]
updated for version 7.3.023
Problem: External program may hang when it tries to write to the tty.
Solution: Don't close the slave tty until after the child exits. (Nikola
Knezevic)
Bram Moolenaar [Wed, 13 Oct 2010 12:05:35 +0000 (14:05 +0200)]
updated for version 7.3.022
Problem: When opening a new window the 'spellcapcheck' option is cleared.
Solution: Copy the correct option value. (Christian Brabandt)
Bram Moolenaar [Sat, 9 Oct 2010 15:23:31 +0000 (17:23 +0200)]
updated for version 7.3.020
Problem: Cursor position wrong when joining multiple lines and
'formatoptions' contains "a". (Moshe Kamensky)
Solution: Adjust cursor position for skipped indent. (Carlo Teubner)
updated for version 7.3.018
Problem: Missing argument to windres in MingW makefiles.
Solution: Add the argument that was wrapped in the patch. (Jon Maken)
updated for version 7.3.014
Problem: Ending a line in a backslash inside an ":append" or ":insert"
command in Ex mode doesn't work properly. (Ray Frush)
Solution: Halve the number of backslashes, only insert a NUL after an odd
number of backslashes.
updated for version 7.3.013
Problem: Dynamic loading with Ruby doesn't work for 1.9.2.
Solution: Handle rb_str2cstr differently. Also support dynamic loading on
Unix. (Jon Maken)
updated for version 7.3.011
Problem: X11 clipboard doesn't work in Athena/Motif GUI. First selection
after a shell command doesn't work.
Solution: When using the GUI use XtLastTimestampProcessed() instead of
changing a property. (partly by Toni Ronkko)
When executing a shell command disown the selection.
updated for version 7.3.009
Problem: Win32: Crash on Windows when using a bad argument for strftime().
(Christian Brabandt)
Solution: Use the bad_param_handler(). (Mike Williams)
updated for version 7.3.007
Problem: Python code defines global "buffer". Re-implements a grow-array.
Solution: Use a grow-array instead of coding the same functionality. Handle
out-of-memory situation properly.
updated for version 7.3.005
Problem: Crash when using undotree(). (Christian Brabandt)
Solution: Increase the list reference count. Add a test for undotree()
(Lech Lorens)
Bram Moolenaar [Tue, 17 Aug 2010 18:26:59 +0000 (20:26 +0200)]
updated for version 7.3.003
Problem: Crash with specific BufWritePost autocmd. (Peter Odding)
Solution: Don't free the quickfix title twice. (Lech Lorens)
Bram Moolenaar [Mon, 16 Aug 2010 20:34:29 +0000 (22:34 +0200)]
updated for version 7.3.002
Problem: ":find" completion doesn't work when halfway an environment
variable. (Dominique Pelle)
Solution: Only use in-path completion when expanding file names. (Nazri
Ramliy)
Bram Moolenaar [Mon, 16 Aug 2010 19:53:27 +0000 (21:53 +0200)]
updated for version 7.3.002
Problem: ":find" completion doesn't work when halfway an environment
variable. (Dominique Pelle)
Solution: Only use in-path completion when expanding file names. (Nazri
Ramliy)