summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2010-02-17updated for version 7.2.360v7.2.360Bram Moolenaar
Problem: Ruby on MS-Windows: can't use sockets. Solution: Call NtInitialize() during initialization. (Ariya Mizutani)
2010-02-11updated for version 7.2.359v7.2.359Bram Moolenaar
Problem: Crash when using the Netbeans join command. Solution: Make sure the ml_flush_line() function is not used recursively. (Xavier de Gaye)
2010-02-11updated for version 7.2.358v7.2.358Bram Moolenaar
Problem: Compiler warnings on VMS. (Zoltan Arpadffy) Solution: Pass array itself instead its address. Return a value.
2010-02-11updated for version 7.2.357v7.2.357Bram Moolenaar
Problem: When changing 'fileformat' from/to "mac" and there is a CR in the text the display is wrong. Solution: Redraw the text when 'fileformat' is changed. (Ben Schmidt)
2010-02-11Updated runtime files.Bram Moolenaar
2010-02-03updated for version 7.2.356v7.2.356Bram Moolenaar
Problem: When 'foldmethod' is changed not all folds are closed as expected. Solution: In foldUpdate() correct the start position and reset fd_flags when w_foldinvalid is set. (Lech Lorens)
2010-02-03updated for version 7.2.355v7.2.355Bram Moolenaar
Problem: Computing the cursor column in validate_cursor_col() is wrong when line numbers are used and 'n' is not in 'cpoptions', causing the popup menu to be positioned wrong. Solution: Correctly use the offset. (partly by Dominique Pelle)
2010-02-03updated for version 7.2.354v7.2.354Bram Moolenaar
Problem: Japanese single-width double-byte characters not handled correctly. Solution: Put 0x8e in ScreenLines[] and the second byte in ScreenLines2[]. (partly by Kikuchan)
2010-02-03updated for version 7.2.353v7.2.353Bram Moolenaar
Problem: No command line completion for ":profile". Solution: Complete the subcommand and file name.
2010-02-03updated for version 7.2.352v7.2.352Bram Moolenaar
Problem: Win64: Vim doesn't work when cross-compiled with MingW libraries. Solution: Always return TRUE for the WM_NCCREATE message. (Andy Kittner)
2010-01-28updated for version 7.2.351v7.2.351Bram Moolenaar
Problem: Can't build with some compilers. Solution: Move the #ifdef outside of a macro. Cleanup the code.
2010-01-27updated for version 7.2.350v7.2.350Bram Moolenaar
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.
2010-01-27updated for version 7.2.349v7.2.349Bram Moolenaar
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.
2010-01-27updated for version 7.2.348v7.2.348Bram Moolenaar
Problem: Unicode double-width characters are not up-to date. Solution: Produce the double-width table like the others.
2010-01-27updated for version 7.2.347v7.2.347Bram Moolenaar
Problem: Crash when executing <expr> mapping redefines that same mapping. Solution: Save the values used before evaluating the expression.
2010-01-27updated for version 7.2.346v7.2.346Bram Moolenaar
Problem: Repeating a command with @: causes a mapping to be applied twice. Solution: Do not remap characters inserted in the typeahead buffer. (Kana Natsuno)
2010-01-27updated for version 7.2.345v7.2.345Bram Moolenaar
Problem: Tab line is not updated when the value of 'bt' is changed. Solution: Call redraw_titles(). (Lech Lorens)
2010-01-20Add more pathdef.c to .hgignore.Bram Moolenaar
2010-01-20updated for version 7.2.344v7.2.344Bram Moolenaar
Problem: Can't compile on some systems Solution: Move the #ifdef outside of the mch_open macro. (Patrick Texier)
2010-01-19updated for version 7.2.343v7.2.343Bram Moolenaar
Problem: Can't compile on Win32. Solution: Insert the missing bar.
2010-01-19updated for version 7.2.342v7.2.342Bram Moolenaar
Problem: Popup menu displayed wrong in 'rightleft' mode when there are multi-byte characters. Solution: Adjust the column computations. (Dominique Pelle)
2010-01-19updated for version 7.2.341v7.2.341Bram Moolenaar
Problem: Popup menu wraps to next line when double-wide character doesn't fit. (Jiang Ma) Solution: Display a ">" instead. (Dominique Pelle)
2010-01-19updated for version 7.2.340v7.2.340Bram Moolenaar
Problem: Gcc warning for condition that can never be true. (James Vega) Solution: Use start_lvl instead flp->lvl.
2010-01-19updated for version 7.2.339v7.2.339Bram Moolenaar
Problem: Part of --startuptime patch is missing. Solution: Add check for time_fd.
2010-01-19updated for version 7.2.338v7.2.338Bram Moolenaar
Problem: Part of FD_CLOEXEC change is missing. Solution: Include source file skipped because of typo.
2010-01-19updated for version 7.2.337v7.2.337Bram Moolenaar
Problem: The :compiler command doesn't function properly when invoked in a function. Solution: Add "g:" before "current_compiler". (Yukihiro Nakadaira)
2010-01-19updated for version 7.2.336v7.2.336Bram Moolenaar
Problem: MzScheme interface can't evaluate an expression. Solution: Add mzeval(). (Sergey Khorev)
2010-01-19updated for version 7.2.335v7.2.335Bram Moolenaar
Problem: The CTRL-] command escapes too many characters. Solution: Use a different list of characters to be escaped. (Sergey Khorev)
2010-01-19updated for version 7.2.334v7.2.334Bram Moolenaar
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)
2010-01-19updated for version 7.2.333v7.2.333Bram Moolenaar
Problem: Warnings from static code analysis. Solution: Small changes to various lines. (Dominique Pelle)
2010-01-19updated for version 7.2.332v7.2.332Bram Moolenaar
Problem: Crash when spell correcting triggers an autocommand that reloads the buffer. Solution: Make a copy of the line to be modified. (Dominique Pelle)
2010-01-19updated for version 7.2.331v7.2.331Bram Moolenaar
Problem: Can't interrupt "echo list" for a very long list. Solution: Call line_breakcheck() in list_join().
2010-01-17Add a few missing runtime files.Bram Moolenaar
2010-01-16Updated runtime files.Bram Moolenaar
2010-01-12Updated runtime files.Bram Moolenaar
2010-01-12updated for version 7.2.330v7.2.330Bram Moolenaar
Problem: Tables for Unicode case operators are outdated. Solution: Add a Vim script for generating the tables. Include tables for Unicode 5.2.
2010-01-12updated for version 7.2.329v7.2.329Bram Moolenaar
Problem: "g_" doesn't position cursor correctly when in Visual mode and 'selection' is "exclusive". (Ben Fritz) Solution: Call adjust_for_sel().
2010-01-12updated for version 7.2.328v7.2.328Bram Moolenaar
Problem: has("win64") does not return 1 on 64 bit MS-Windows version. Solution: Also check for _WIN64 besides WIN64.
2010-01-11Fixed encoding name in Ukranian message file.Bram Moolenaar
2010-01-10Add an .hgignore file (suggested by Mike Williams).Bram Moolenaar
2010-01-10Remove config.h from the distribution, let's see if that works.Bram Moolenaar
2010-01-06Minor text file updates.Bram Moolenaar
2010-01-06Update runtime files.Bram Moolenaar
2010-01-06Update documentation files.Bram Moolenaar
2010-01-06Update message translations.Bram Moolenaar
2010-01-06updated for version 7.2.327v7.2.327Bram Moolenaar
2010-01-06updated for version 7.2.326v7.2.326Bram Moolenaar
2009-12-31updated for version 7.2-325v7.2.325Bram Moolenaar
2009-12-31updated for version 7.2-324v7.2.324Bram Moolenaar
2009-12-24updated for version 7.2-323v7.2.323Bram Moolenaar