summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.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.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.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.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 for version 7.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.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.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.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.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.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.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.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.348Bram Moolenaar2010-01-272-14/+46
| | | | | 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.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.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.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)
* updated for version 7.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.343Bram Moolenaar2010-01-192-1/+3
| | | | | Problem: Can't compile on Win32. Solution: Insert the missing bar.
* updated for version 7.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.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.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.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.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.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.336Bram Moolenaar2010-01-1912-17/+327
| | | | | Problem: MzScheme interface can't evaluate an expression. Solution: Add mzeval(). (Sergey Khorev)
* updated for version 7.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.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.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.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.331Bram Moolenaar2010-01-192-0/+3
| | | | | Problem: Can't interrupt "echo list" for a very long list. Solution: Call line_breakcheck() in list_join().
* updated for version 7.2.330v7.2.330Bram Moolenaar2010-01-122-204/+837
| | | | | | 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.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.328Bram Moolenaar2010-01-122-1/+3
| | | | | 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
|
* Remove config.h from the distribution, let's see if that works.Bram Moolenaar2010-01-101-0/+0
|
* Minor text file updates.Bram Moolenaar2010-01-061-2/+6
|
* Update message translations.Bram Moolenaar2010-01-0634-2841/+12964
|
* updated for version 7.2.327v7.2.327Bram Moolenaar2010-01-063-16/+27
|
* updated for version 7.2.326v7.2.326Bram Moolenaar2010-01-062-1/+5
|
* updated for version 7.2-325v7.2.325Bram Moolenaar2009-12-312-0/+9
|
* updated for version 7.2-324v7.2.324Bram Moolenaar2009-12-313-1/+6
|
* updated for version 7.2-323v7.2.323Bram Moolenaar2009-12-242-4/+6
|
* updated for version 7.2-322v7.2.322Bram Moolenaar2009-12-242-0/+6
|
* updated for version 7.2-321v7.2.321Bram Moolenaar2009-12-243-0/+4
|
* updated for version 7.2-320v7.2.320Bram Moolenaar2009-12-163-52/+6
|
* updated for version 7.2-319v7.2.319Bram Moolenaar2009-12-162-2/+3
|
* updated for version 7.2-318v7.2.318Bram Moolenaar2009-12-162-7/+16
|
* updated for version 7.2-317v7.2.317Bram Moolenaar2009-12-162-6/+9
|
* updated for version 7.2-316v7.2.316Bram Moolenaar2009-12-163-3/+6
|
* updated for version 7.2-315v7.2.315Bram Moolenaar2009-12-023-8/+10
|