summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.427v7.3.427Bram Moolenaar2012-02-052-85/+131
| | | | | Problem: readfile() can be slow with long lines. Solution: Use realloc() instead of alloc(). (John Little)
* updated for version 7.3.426v7.3.426Bram Moolenaar2012-02-046-17/+19
| | | | | | | Problem: With '$' in 'cpoptions' the $ is not displayed in the first column. Solution: Use -1 instead of 0 as a special value. (Hideki Eiraku and Hirohito Higashi)
* updated for version 7.3.425v7.3.425Bram Moolenaar2012-02-042-2/+6
| | | | | Problem: Search history lines are duplicated. (Edwin Steiner) Solution: Convert separator character from space to NUL.
* updated for version 7.3.424v7.3.424Bram Moolenaar2012-02-042-0/+8
| | | | | Problem: Win16 version missing some functions. Solution: Add #defines for the functions.
* updated for version 7.3.423v7.3.423Bram Moolenaar2012-02-0448-377/+883
| | | | | | | Problem: Small mistakes in comments, proto and indent. Solution: Fix the mistakes. Also update runtime files
* updated for version 7.3.422v7.3.422Bram Moolenaar2012-02-043-2/+13
| | | | | Problem: Python 3 does not have __members__. Solution: Add "name" and "number" in another way. (lilydjwg)
* updated for version 7.3.421v7.3.421Bram Moolenaar2012-01-282-2/+5
| | | | | | Problem: Get E832 when setting 'undofile' in vimrc and there is a file to be edited on the command line. (Toothpik) Solution: Do not try reading the undo file for a file that wasn't loaded.
* updated for version 7.3.420v7.3.420Bram Moolenaar2012-01-262-2/+4
| | | | | Problem: "it" and "at" don't work properly with a dash in the tag name. Solution: Require a space to match the tag name. (Christian Brabandt)
* updated for version 7.3.419v7.3.419Bram Moolenaar2012-01-262-2/+18
| | | | | Problem: DBCS encoding in a user command does not always work. Solution: Skip over DBCS characters. (Yasuhiro Matsumoto)
* updated for version 7.3.418v7.3.418Bram Moolenaar2012-01-262-0/+7
| | | | | | Problem: When a user complete function returns -1 an error message is given. Solution: When -2 is returned stop completion silently. (Yasuhiro Matsumoto)
* updated for version 7.3.417v7.3.417Bram Moolenaar2012-01-261-0/+2
| | | | | Problem: Test 43 fails with a tiny build. Solution: Only run test 43 with at least a small build.
* updated for version 7.3.416v7.3.416Bram Moolenaar2012-01-262-1/+3
| | | | | Problem: Compiler warning for wrong pointer. Solution: Add type cast.
* updated for version 7.3.416Bram Moolenaar2012-01-261-0/+1
| | | | | Problem: Compiler warning for wrong pointer. Solution: Add type cast.
* updated for version 7.3.415v7.3.415Bram Moolenaar2012-01-262-1/+3
| | | | | | Problem: Completion of functions stops once a dictionary is encountered. (James McCoy) Solution: Return an empty string instead of NULL.
* updated for version 7.3.414v7.3.414Bram Moolenaar2012-01-262-4/+6
| | | | | | Problem: Using CTRL-A on "000" drops the leading zero, while on "001" it doesn't. Solution: Detect "000" as an octal number. (James McCoy)
* updated for version 7.3.413v7.3.413Bram Moolenaar2012-01-264-3/+5
| | | | | Problem: Build warnings on MS-Windows. Solution: Add type casts. (Mike Williams)
* updated for version 7.3.412v7.3.412Bram Moolenaar2012-01-262-1/+3
| | | | | Problem: Storing a float in a session file has an additional '&'. Solution: Remove the '&'. (Yasuhiro Matsumoto)
* updated for version 7.3.411v7.3.411Bram Moolenaar2012-01-262-1/+3
| | | | | | | Problem: Pasting in Visual mode using the "" register does not work. (John Beckett) Solution: Detect that the write is overwriting the pasted register. (Christian Brabandt)
* updated for version 7.3.410v7.3.410Bram Moolenaar2012-01-232-1/+3
| | | | | Problem: Compiler error for // comment. (Joachim Schmitz) Solution: Turn into /* comment */.
* updated for version 7.3.409v7.3.409Bram Moolenaar2012-01-202-0/+6
| | | | | Problem: The license in pty.c is unclear. Solution: Add a comment about the license.
* Update runtime files.Bram Moolenaar2012-01-2041-1242/+1443
|
* updated for version 7.3.408v7.3.408Bram Moolenaar2012-01-202-0/+3
| | | | | Problem: Missing declaration. Solution: Add the declaration. (John Marriott)
* updated for version 7.3.407v7.3.407Bram Moolenaar2012-01-206-18/+41
| | | | | | | Problem: ":12verbose call F()" may duplicate text while trying to truncate. (Thinca) Solution: Only truncate when there is not enough room. Also check the byte length of the buffer.
* updated for version 7.3.406v7.3.406Bram Moolenaar2012-01-202-17/+15
| | | | | | Problem: Multi-byte characters in b:browsefilter are not handled correctly. Solution: First use convert_filter() normally and then convert to wide characters. (Taro Muraoka)
* updated for version 7.3.405v7.3.405Bram Moolenaar2012-01-204-3/+17
| | | | | | Problem: When xterm gets back the function keys it may delete the urxvt mouse termcap code. Solution: Check for the whole code, not just the start. (Egmont Koblinger)
* updated for version 7.3.404v7.3.404Bram Moolenaar2012-01-202-4/+17
| | | | | | | Problem: When a complete function uses refresh "always" redo will not work properly. Solution: Do not reset compl_leader when compl_opt_refresh_always is set. (Yasuhiro Matsumoto)
* updated for version 7.3.403v7.3.403Bram Moolenaar2012-01-202-4/+36
| | | | | Problem: ":helpgrep" does not trigger QuickFixCmd* autocommands. Solution: Trigger the autocommands. (Christian Brabandt)
* updated for version 7.3.402v7.3.402Bram Moolenaar2012-01-202-2/+6
| | | | | | | Problem: When jumping to the first error a line of the buffer is sometimes redrawn on top of the list of errors. Solution: Do not call update_topline_redraw() if the display was scrolled up.
* updated for version 7.3.401v7.3.401Bram Moolenaar2012-01-102-12/+16
| | | | | Problem: A couple more shadowed variables. Solution: Rename the variables.
* updated for version 7.3.400v7.3.400Bram Moolenaar2012-01-1019-162/+167
| | | | | Problem: Compiler warnings for shadowed variables. Solution: Remove or rename the variables.
* updated for version 7.3.399v7.3.399Bram Moolenaar2012-01-102-6/+14
| | | | | | Problem: ":cd" doesn't work when the path contains wildcards. (Yukihiro Nakadaira) Solution: Ignore wildcard errors when the EW_NOTWILD flag is used.
* updated for version 7.3.398v7.3.398Bram Moolenaar2012-01-102-4/+3
| | | | | | Problem: When creating more than 10 location lists and adding items one by one a previous location may be used. (Audrius Kažukauskas) Solution: Clear the location list completely when adding the tenth one.
* updated for version 7.3.397v7.3.397Bram Moolenaar2012-01-105-24/+64
| | | | | | Problem: ":helpgrep" does not work properly when 'encoding' is not utf-8 or latin1. Solution: Convert non-ascii lines to 'encoding'. (Yasuhiro Matsumoto)
* Updated runtime files.Bram Moolenaar2012-01-1024-103/+278
|
* updated for version 7.3.396v7.3.396Bram Moolenaar2012-01-102-0/+3
| | | | | | | Problem: After forcing an operator to be characterwise it can still become linewise when spanning whole lines. Solution: Don't make the operator linewise when motion_force was set. (Christian Brabandt)
* updated for version 7.3.395v7.3.395Bram Moolenaar2012-01-104-4/+15
| | | | | | Problem: "dv?bar" in the last line deletes too much and breaks undo. Solution: Only adjust the cursor position when it's after the last line of the buffer. Add a test. (Christian Brabandt)
* updated for version 7.3.394v7.3.394Bram Moolenaar2012-01-102-3/+9
| | | | | | Problem: When placing a mark while starting up a screen redraw messes up the screen. (lith) Solution: Don't redraw while still starting up. (Christian Brabandt)
* updated for version 7.3.393v7.3.393Bram Moolenaar2012-01-042-29/+22
| | | | | | Problem: Win32: When resizing Vim it is always moved to the primary monitor if the secondary monitor is on the left. Solution: Use the nearest monitor. (Yukihiro Nakadaira)
* updated for version 7.3.392v7.3.392Bram Moolenaar2012-01-044-0/+42
| | | | | | | Problem: When setting 'undofile' while the file is already loaded but unchanged, try reading the undo file. (Andy Wokula) Solution: Compute a checksum of the text when 'undofile' is set. (Christian Brabandt)
* updated for version 7.3.391v7.3.391Bram Moolenaar2012-01-042-0/+5
| | | | | Problem: Can't check if the XPM_W32 feature is enabled. Solution: Add xpm_w32 to the list of features. (kat)
* updated for version 7.3.390v7.3.390Bram Moolenaar2011-12-304-7/+18
| | | | | Problem: Using NULL buffer pointer in a window. Solution: Check for w_buffer being NULL in more places. (Bjorn Winckler)
* updated for version 7.3.389v7.3.389Bram Moolenaar2011-12-302-1/+4
| | | | | Problem: After typing at a prompt the "MORE" message appears too soon. Solution: reset lines_left in msg_end_prompt(). (Eswald)
* updated for version 7.3.388v7.3.388Bram Moolenaar2011-12-302-0/+4
| | | | | Problem: Crash on exit when EXITFREE is defined and using tiny features. Solution: Check for NULL window pointer. (Dominique Pelle)
* Updated runtime files.Bram Moolenaar2011-12-3035-251/+453
|
* updated for version 7.3.387v7.3.387Bram Moolenaar2011-12-302-1/+3
| | | | | Problem: Test 83 may fail for some encodings. Solution: Set 'encoding' to utf-8 earlier.
* updated for version 7.3.386v7.3.386Bram Moolenaar2011-12-232-1/+3
| | | | | Problem: Test 83 fails when iconv does not support cp932. (raf) Solution: Test if conversion works. (Yukihiro Nakadaira)
* updated for version 7.3.385v7.3.385Bram Moolenaar2011-12-232-0/+8
| | | | | | | Problem: When using an expression mapping on the command line the cursor ends up in the wrong place. (Yasuhiro Matsumoto) Solution: Save and restore msg_col and msg_row when evaluating the expression.
* updated for version 7.3.384v7.3.384Bram Moolenaar2011-12-232-1/+3
| | | | | | Problem: Mapping CTRL-K in Insert mode breaks CTRL-X CTRL-K for dictionary completion. Solution: Add CTRL-K to the list of recognized keys. (James McCoy)
* updated for version 7.3.383v7.3.383Bram Moolenaar2011-12-232-1/+3
| | | | | Problem: For EBCDIC pound sign is defined as 't'. Solution: Correctly define POUND.
* updated for version 7.3.382v7.3.382Bram Moolenaar2011-12-152-6/+19
| | | | | | Problem: IME characters are inserted twice. Solution: Do not call DefWindowProc() if the event was handled. (Yasuhiro Matsumoto)