Bram Moolenaar [Wed, 3 Feb 2010 11:23:24 +0000 (12:23 +0100)]
updated for version 7.2.352
Problem: Win64: Vim doesn't work when cross-compiled with MingW libraries.
Solution: Always return TRUE for the WM_NCCREATE message. (Andy Kittner)
Bram Moolenaar [Wed, 27 Jan 2010 20:05:05 +0000 (21:05 +0100)]
updated for version 7.2.350
Problem: Win32: When changing font the window may jump from the secondary
to the primary screen. (Michael Wookey)
Solution: When the screen position was negative don't correct it to zero.
Bram Moolenaar [Wed, 27 Jan 2010 19:26:46 +0000 (20:26 +0100)]
updated for version 7.2.349
Problem: CTRL-W gf doesn't put the new tab in the same place as "tab split"
and "gf". (Tony Mechelynck)
Solution: Store the tab number in cmdmod.tab.
Bram Moolenaar [Wed, 27 Jan 2010 16:31:43 +0000 (17:31 +0100)]
updated for version 7.2.347
Problem: Crash when executing <expr> mapping redefines that same mapping.
Solution: Save the values used before evaluating the expression.
Bram Moolenaar [Wed, 27 Jan 2010 15:31:13 +0000 (16:31 +0100)]
updated for version 7.2.346
Problem: Repeating a command with @: causes a mapping to be applied twice.
Solution: Do not remap characters inserted in the typeahead buffer. (Kana
Natsuno)
Bram Moolenaar [Tue, 19 Jan 2010 17:06:03 +0000 (18:06 +0100)]
updated for version 7.2.342
Problem: Popup menu displayed wrong in 'rightleft' mode when there are
multi-byte characters.
Solution: Adjust the column computations. (Dominique Pelle)
Bram Moolenaar [Tue, 19 Jan 2010 16:40:46 +0000 (17:40 +0100)]
updated for version 7.2.341
Problem: Popup menu wraps to next line when double-wide character doesn't
fit. (Jiang Ma)
Solution: Display a ">" instead. (Dominique Pelle)
Bram Moolenaar [Tue, 19 Jan 2010 15:13:50 +0000 (16:13 +0100)]
updated for version 7.2.337
Problem: The :compiler command doesn't function properly when invoked in a
function.
Solution: Add "g:" before "current_compiler". (Yukihiro Nakadaira)
Bram Moolenaar [Tue, 19 Jan 2010 14:24:27 +0000 (15:24 +0100)]
updated for version 7.2.335
Problem: The CTRL-] command escapes too many characters.
Solution: Use a different list of characters to be escaped. (Sergey Khorev)
Bram Moolenaar [Tue, 19 Jan 2010 14:13:14 +0000 (15:13 +0100)]
updated for version 7.2.334
Problem: Postponing keys in Netbeans interface does not work properly.
Solution: Store the key string instead of the number. Avoid an infinite
loop. (Mostly by Xavier de Gaye)
Bram Moolenaar [Tue, 19 Jan 2010 12:08:42 +0000 (13:08 +0100)]
updated for version 7.2.332
Problem: Crash when spell correcting triggers an autocommand that reloads
the buffer.
Solution: Make a copy of the line to be modified. (Dominique Pelle)
Bram Moolenaar [Tue, 12 Jan 2010 18:52:03 +0000 (19:52 +0100)]
updated for version 7.2.330
Problem: Tables for Unicode case operators are outdated.
Solution: Add a Vim script for generating the tables. Include tables for
Unicode 5.2.
Bram Moolenaar [Tue, 12 Jan 2010 14:42:37 +0000 (15:42 +0100)]
updated for version 7.2.329
Problem: "g_" doesn't position cursor correctly when in Visual mode and
'selection' is "exclusive". (Ben Fritz)
Solution: Call adjust_for_sel().