summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.2.371v7.2.371v7-2-371Bram Moolenaar2010-02-248-9/+149
| | | | | Problem: Build problems on Tandem NonStop. Solution: A few changes to #ifdefs (Joachim Schmitz)
* updated for version 7.2.370v7.2.370v7-2-370Bram Moolenaar2010-02-246-21/+29
| | | | | Problem: A redraw may cause folds to be closed. Solution: Revert part of the previous patch. Add a test. (Lech Lorens)
* updated for version 7.2.369v7.2.369v7-2-369Bram Moolenaar2010-02-242-1/+3
| | | | | Problem: Error message is not easy to understand. Solution: Add quotes. (SungHyun Nam)
* updated for version 7.2.368v7.2.368v7-2-368Bram Moolenaar2010-02-182-1/+3
| | | | | Problem: Ruby interface: Appending line doesn't work. (Michael Henry) Solution: Reverse check for NULL line. (James Vega)
* updated for version 7.2.367v7.2.367v7-2-367Bram Moolenaar2010-02-172-5/+7
| | | | | Problem: "xxd -r -p" doesn't work as documented. Solution: Skip white space. (James Vega)
* updated for version 7.2.366v7.2.366v7-2-366Bram Moolenaar2010-02-172-6/+17
| | | | | Problem: CTRL-B doesn't go back to the first line of the buffer. Solution: Avoid an overflow when adding MAXCOL.
* updated for version 7.2.365v7.2.365v7-2-365Bram Moolenaar2010-02-172-2/+4
| | | | | | Problem: MS-Windows with MingW: "File->Save As" does not work. (John Marriott) Solution: Correctly fill in structure size. (Andy Kittner)
* updated for version 7.2.364v7.2.364v7-2-364Bram Moolenaar2010-02-172-4/+6
| | | | | Problem: Can't build gvimext.dll on Win 7 x64 using MinGW (John Marriott) Solution: Check if _MSC_VER is defined. (Andy Kittner)
* updated for version 7.2.363v7.2.363v7-2-363Bram Moolenaar2010-02-172-0/+11
| | | | | Problem: Can't dynamically load Perl 5.10. Solution: Add the function Perl_croak_xs_usage. (Sergey Khorev)
* updated for version 7.2.362v7.2.362v7-2-362Bram Moolenaar2010-02-173-7/+25
| | | | | | Problem: Win64: Vim doesn't work when cross-compiled with MingW libraries. Solution: Instead of handling WM_NCCREATE, create wide text area window class if the parent window iw side. (Sergey Khorev)
* updated for version 7.2.361v7.2.361v7-2-361Bram Moolenaar2010-02-175-32/+197
| | | | | Problem: Ruby 1.9 is not supported. Solution: Add Ruby 1.9 support. (Msaki Suketa)
* updated for version 7.2.360v7.2.360v7-2-360Bram Moolenaar2010-02-172-0/+16
| | | | | Problem: Ruby on MS-Windows: can't use sockets. Solution: Call NtInitialize() during initialization. (Ariya Mizutani)
* updated for version 7.2.359v7.2.359v7-2-359Bram Moolenaar2010-02-112-0/+11
| | | | | | Problem: Crash when using the Netbeans join command. Solution: Make sure the ml_flush_line() function is not used recursively. (Xavier de Gaye)
* updated for version 7.2.358v7.2.358v7-2-358Bram Moolenaar2010-02-113-1/+9
| | | | | Problem: Compiler warnings on VMS. (Zoltan Arpadffy) Solution: Pass array itself instead its address. Return a value.
* updated for version 7.2.357v7.2.357v7-2-357Bram Moolenaar2010-02-112-0/+6
| | | | | | 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)
* Updated runtime files.Bram Moolenaar2010-02-1113-60/+61
|
* updated for version 7.2.356v7.2.356v7-2-356Bram Moolenaar2010-02-032-1/+9
| | | | | | 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)
* updated for version 7.2.355v7.2.355v7-2-355Bram Moolenaar2010-02-032-5/+8
| | | | | | | 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)
* updated for version 7.2.354v7.2.354v7-2-354Bram Moolenaar2010-02-032-7/+12
| | | | | | Problem: Japanese single-width double-byte characters not handled correctly. Solution: Put 0x8e in ScreenLines[] and the second byte in ScreenLines2[]. (partly by Kikuchan)
* updated for version 7.2.353v7.2.353v7-2-353Bram Moolenaar2010-02-036-0/+86
| | | | | Problem: No command line completion for ":profile". Solution: Complete the subcommand and file name.
* updated for version 7.2.352v7.2.352v7-2-352Bram Moolenaar2010-02-032-2/+10
| | | | | Problem: Win64: Vim doesn't work when cross-compiled with MingW libraries. Solution: Always return TRUE for the WM_NCCREATE message. (Andy Kittner)
* updated for version 7.2.351v7.2.351v7-2-351Bram Moolenaar2010-01-282-9/+18
| | | | | Problem: Can't build with some compilers. Solution: Move the #ifdef outside of a macro. Cleanup the code.
* updated for version 7.2.350v7.2.350v7-2-350Bram Moolenaar2010-01-272-4/+12
| | | | | | 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.
* updated for version 7.2.349v7.2.349v7-2-349Bram Moolenaar2010-01-272-1/+3
| | | | | | 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.
* updated for version 7.2.348v7.2.348v7-2-348Bram Moolenaar2010-01-273-30/+72
| | | | | Problem: Unicode double-width characters are not up-to date. Solution: Produce the double-width table like the others.
* updated for version 7.2.347v7.2.347v7-2-347Bram Moolenaar2010-01-272-6/+39
| | | | | Problem: Crash when executing <expr> mapping redefines that same mapping. Solution: Save the values used before evaluating the expression.
* updated for version 7.2.346v7.2.346v7-2-346Bram Moolenaar2010-01-272-4/+13
| | | | | | Problem: Repeating a command with @: causes a mapping to be applied twice. Solution: Do not remap characters inserted in the typeahead buffer. (Kana Natsuno)
* updated for version 7.2.345v7.2.345v7-2-345Bram Moolenaar2010-01-272-0/+5
| | | | | Problem: Tab line is not updated when the value of 'bt' is changed. Solution: Call redraw_titles(). (Lech Lorens)
* Add more pathdef.c to .hgignore.Bram Moolenaar2010-01-201-0/+1
|
* updated for version 7.2.344v7.2.344v7-2-344Bram Moolenaar2010-01-202-3/+5
| | | | | Problem: Can't compile on some systems Solution: Move the #ifdef outside of the mch_open macro. (Patrick Texier)
* updated for version 7.2.343v7.2.343v7-2-343Bram Moolenaar2010-01-192-1/+3
| | | | | Problem: Can't compile on Win32. Solution: Insert the missing bar.
* updated for version 7.2.342v7.2.342v7-2-342Bram Moolenaar2010-01-192-9/+26
| | | | | | Problem: Popup menu displayed wrong in 'rightleft' mode when there are multi-byte characters. Solution: Adjust the column computations. (Dominique Pelle)
* updated for version 7.2.341v7.2.341v7-2-341Bram Moolenaar2010-01-192-1/+10
| | | | | | Problem: Popup menu wraps to next line when double-wide character doesn't fit. (Jiang Ma) Solution: Display a ">" instead. (Dominique Pelle)
* updated for version 7.2.340v7.2.340v7-2-340Bram Moolenaar2010-01-192-2/+4
| | | | | Problem: Gcc warning for condition that can never be true. (James Vega) Solution: Use start_lvl instead flp->lvl.
* updated for version 7.2.339v7.2.339v7-2-339Bram Moolenaar2010-01-192-4/+10
| | | | | Problem: Part of --startuptime patch is missing. Solution: Add check for time_fd.
* updated for version 7.2.338v7.2.338v7-2-338Bram Moolenaar2010-01-192-4/+21
| | | | | Problem: Part of FD_CLOEXEC change is missing. Solution: Include source file skipped because of typo.
* updated for version 7.2.337v7.2.337v7-2-337Bram Moolenaar2010-01-192-6/+9
| | | | | | Problem: The :compiler command doesn't function properly when invoked in a function. Solution: Add "g:" before "current_compiler". (Yukihiro Nakadaira)
* updated for version 7.2.336v7.2.336v7-2-336Bram Moolenaar2010-01-1915-22/+359
| | | | | Problem: MzScheme interface can't evaluate an expression. Solution: Add mzeval(). (Sergey Khorev)
* updated for version 7.2.335v7.2.335v7-2-335Bram Moolenaar2010-01-192-4/+14
| | | | | Problem: The CTRL-] command escapes too many characters. Solution: Use a different list of characters to be escaped. (Sergey Khorev)
* updated for version 7.2.334v7.2.334v7-2-334Bram Moolenaar2010-01-193-20/+36
| | | | | | 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)
* updated for version 7.2.333v7.2.333v7-2-333Bram Moolenaar2010-01-1911-28/+19
| | | | | Problem: Warnings from static code analysis. Solution: Small changes to various lines. (Dominique Pelle)
* updated for version 7.2.332v7.2.332v7-2-332Bram Moolenaar2010-01-192-3/+10
| | | | | | Problem: Crash when spell correcting triggers an autocommand that reloads the buffer. Solution: Make a copy of the line to be modified. (Dominique Pelle)
* updated for version 7.2.331v7.2.331v7-2-331Bram Moolenaar2010-01-192-0/+3
| | | | | Problem: Can't interrupt "echo list" for a very long list. Solution: Call line_breakcheck() in list_join().
* Add a few missing runtime files.Bram Moolenaar2010-01-178-0/+249
|
* Updated runtime files.Bram Moolenaar2010-01-163-53/+127
|
* Updated runtime files.Bram Moolenaar2010-01-123-53/+221
|
* updated for version 7.2.330v7.2.330v7-2-330Bram Moolenaar2010-01-124-204/+1119
| | | | | | Problem: Tables for Unicode case operators are outdated. Solution: Add a Vim script for generating the tables. Include tables for Unicode 5.2.
* updated for version 7.2.329v7.2.329v7-2-329Bram Moolenaar2010-01-123-2/+5
| | | | | | Problem: "g_" doesn't position cursor correctly when in Visual mode and 'selection' is "exclusive". (Ben Fritz) Solution: Call adjust_for_sel().
* updated for version 7.2.328v7.2.328v7-2-328Bram Moolenaar2010-01-123-3/+4
| | | | | Problem: has("win64") does not return 1 on 64 bit MS-Windows version. Solution: Also check for _WIN64 besides WIN64.
* Fixed encoding name in Ukranian message file.Bram Moolenaar2010-01-111-1/+1
|