summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-10-20updated for version 7.3.031Bram Moolenaar
Problem: Can't pass the X window ID to another application. Solution: Add v:windowid. (Christian J. Robinson, Lech Lorens)
2010-10-20Updated runtime files and translations.Bram Moolenaar
2010-10-20updated for version 7.3.030Bram Moolenaar
Problem: Cannot store Dict and List in viminfo file. Solution: Add support for this. (Christian Brabandt)
2010-10-15updated for version 7.3.029Bram Moolenaar
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.
2010-10-14updated for version 7.3.028Bram Moolenaar
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.
2010-10-13updated for version 7.3.027Bram Moolenaar
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)
2010-10-13updated for version 7.3.026Bram Moolenaar
Problem: CTRL-] in a help file doesn't always work. (Tony Mechelynck) Solution: Don't escape special characters. (Carlo Teubner)
2010-10-13updated for version 7.3.025Bram Moolenaar
Problem: ":mksession" does not square brackets escape file name properly. Solution: Improve escapging of file names. (partly by Peter Odding)
2010-10-13updated for version 7.3.024Bram Moolenaar
Problem: Named signs do not use a negative number as intended. Solution: Fix the numbering of named signs. (Xavier de Gaye)
2010-10-13updated for version 7.3.023Bram Moolenaar
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)
2010-10-13updated for version 7.3.022Bram Moolenaar
Problem: When opening a new window the 'spellcapcheck' option is cleared. Solution: Copy the correct option value. (Christian Brabandt)
2010-10-10updated for version 7.3.021Bram Moolenaar
Problem: Conflict for defining Boolean in Mac header files. Solution: Define NO_X11_INCLUDES. (Rainer Muller)
2010-10-09updated for version 7.3.020Bram Moolenaar
Problem: Cursor position wrong when joining multiple lines and 'formatoptions' contains "a". (Moshe Kamensky) Solution: Adjust cursor position for skipped indent. (Carlo Teubner)
2010-09-30Runtime file updates.Bram Moolenaar
2010-09-30updated for version 7.3.019Bram Moolenaar
Problem: ":nbstart" can fail silently. Solution: Give an error when netbeans is not supported by the GUI. (Xavier de Gaye)
2010-09-29updated for version 7.3.018Bram Moolenaar
Problem: Missing argument to windres in MingW makefiles. Solution: Add the argument that was wrapped in the patch. (Jon Maken)
2010-09-29updated for version 7.3.017Bram Moolenaar
Problem: smatch reports errors. Solution: Fix the reported errors. (Dominique Pelle)
2010-09-29updated for version 7.3.016Bram Moolenaar
Problem: Netbeans doesn't work under Athena. Solution: Support Athena, just like Motif. (Xavier de Gaye)
2010-09-29updated for version 7.3.015Bram Moolenaar
Problem: Test is using error message that no longer exists. Solution: Change E106 to E121. (Dominique Pelle)
2010-09-29updated for version 7.3.014Bram Moolenaar
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.
2010-09-29updated for version 7.3.013Bram Moolenaar
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)
2010-09-29updated for version 7.3.012Bram Moolenaar
Problem: Problems building with MingW. Solution: Adjust the MingW makefiles. (Jon)
2010-09-21Updated runtime files.Bram Moolenaar
2010-09-21updated for version 7.3.011Bram Moolenaar
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.
2010-09-21updated for version 7.3.010Bram Moolenaar
Problem: Mac GUI: Missing break statements. Solution: Add the break statements. (Dominique Pelle)
2010-09-21updated for version 7.3.009Bram Moolenaar
Problem: Win32: Crash on Windows when using a bad argument for strftime(). (Christian Brabandt) Solution: Use the bad_param_handler(). (Mike Williams)
2010-09-21updated for version 7.3.008Bram Moolenaar
Problem: 'cursorbind' is kept in places where 'scrollbind' is reset. Solution: Reset 'cursorbind'.
2010-09-21updated for version 7.3.007Bram Moolenaar
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.
2010-09-19Updated runtime files.Bram Moolenaar
2010-09-18updated for version 7.3.006Bram Moolenaar
Problem: Can't build some multi-byte code with C89. Solution: Move code to after declarations. (Joachim Schmitz)
2010-09-14updated for version 7.3.005Bram Moolenaar
Problem: Crash when using undotree(). (Christian Brabandt) Solution: Increase the list reference count. Add a test for undotree() (Lech Lorens)
2010-09-14updated for version 7.3.004Bram Moolenaar
Problem: Crash when using very long regexp. (Peter Odding) Solution: Reset reg_toolong. (Carlo Teubner)
2010-08-20Fold Vim 7.2 default branch back to trunk to avoid two heads. (TonyBram Moolenaar
Mechelynck)
2010-08-17updated for version 7.3.003Bram Moolenaar
Problem: Crash with specific BufWritePost autocmd. (Peter Odding) Solution: Don't free the quickfix title twice. (Lech Lorens)
2010-08-16updated for version 7.3.002Bram Moolenaar
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)
2010-08-16updated for version 7.3.002Bram Moolenaar
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)
2010-08-15Last changes for the 7.3 release!Bram Moolenaar
2010-08-15Fix #ifdef for GDK_SUPER_MASK. (Stephan Schulz)Bram Moolenaar
2010-08-15Make the references to features in the help more consistent. (Sylvain Hitier)Bram Moolenaar
2010-08-15Docs fix for tabpagewinnr(). (Sylvain Hitier)Bram Moolenaar
2010-08-15Two fixes for :find completion and more testing. (Nazri Ramliy)Bram Moolenaar
2010-08-15Do include Mac clipboard code for MacVim.Bram Moolenaar
2010-08-14Runtime file updates.Bram Moolenaar
2010-08-14Fix building the Mac version with GUI.Bram Moolenaar
2010-08-14README and help file updates.Bram Moolenaar
2010-08-14Fix: in compatible mode, in an empty buffer, ":r file" triggered an errorBram Moolenaar
message.
2010-08-14Fix: strcat() on overlapping string. (Dominique Pelle)Bram Moolenaar
2010-08-14Version 7.3f -> 7.3gBram Moolenaar
2010-08-13Preparations for 7.3f release.Bram Moolenaar
2010-08-13Cleanup in :find completion code. Make it work for "./subdir" in 'path'.Bram Moolenaar