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)