summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.489v7.3.489Bram Moolenaar2012-04-053-4/+10
| | | | | | Problem: CTRL-] in Insert mode does not expand abbreviation when used in a mapping. (Yichao Zhou) Solution: Special case using CTRL-]. (Christian Brabandt)
* updated for version 7.3.488v7.3.488Bram Moolenaar2012-04-052-1/+3
| | | | | Problem: ":help!" in a help file does not work as document. Solution: When in a help file don't give an error message. (thinca)
* Updated runtime files.Bram Moolenaar2012-03-2818-197/+314
|
* updated for version 7.3.487v7.3.487Bram Moolenaar2012-03-2810-61/+84
| | | | | | | Problem: When setting 'timeoutlen' or 'ttimeoutlen' the column for vertical movement is reset unnecessarily. Solution: Do not set w_set_curswant for every option. Add a test for this. (Kana Natsuno) Add the P_CURSWANT flag for options.
* updated for version 7.3.486v7.3.486Bram Moolenaar2012-03-282-5/+5
| | | | | Problem: Build error with mingw64 on Windows 7. Solution: Avoid the step of going through vimres.res. (Guopeng Wen)
* updated for version 7.3.485v7.3.485Bram Moolenaar2012-03-282-1/+3
| | | | | Problem: When building Vim LDFLAGS isn't passed on to building xxd. Solution: Pass the LDFLAGS value. (James McCoy)
* updated for version 7.3.484v7.3.484Bram Moolenaar2012-03-282-0/+4
| | | | | | Problem: The -E and --echo-wid command line arguments are not mentioned in "vim --help". Solution: Add the help lines. (Dominique Pelle)
* updated for version 7.3.483v7.3.483Bram Moolenaar2012-03-284-3/+17
| | | | | | Problem: More prompt shows up too often. Solution: Instead of adding a line break, only start a new line in the message history. (Christian Brabandt)
* updated for version 7.3.482v7.3.482Bram Moolenaar2012-03-282-0/+6
| | | | | | Problem: With 'cursorbind' set moving up/down does not always keep the same column. Solution: Set curswant appropriately. (Gary Johnson)
* updated for version 7.3.481v7.3.481Bram Moolenaar2012-03-282-0/+10
| | | | | | | Problem: Changing 'virtualedit' in an operator function to "all" does not have the desired effect. (Aaron Bohannon) Solution: Save, reset and restore virtual_op when executing an operator function.
* updated for version 7.3.480v7.3.480Bram Moolenaar2012-03-232-21/+80
| | | | | | Problem: When using ":qa" and there is a changed buffer picking the buffer to jump to is not very good. Solution: Consider current and other tab pages. (Hirohito Higashi)
* updated for version 7.3.479v7.3.479Bram Moolenaar2012-03-235-5/+14
| | | | | | Problem: When 'cursorline' is set the line number highlighting can't be set separately. Solution: Add "CursorLineNr". (Howard Buchholz)
* updated for version 7.3.478v7.3.478Bram Moolenaar2012-03-232-0/+3
| | | | | | Problem: Memory leak using the ':rv!' command when reading dictionary or list global variables i.e. with 'viminfo' containing !. Solution: Free the typeval. (Dominique Pelle)
* updated for version 7.3.477v7.3.477Bram Moolenaar2012-03-232-0/+7
| | | | | | | Problem: Using ":echo" to output enough lines to scroll, then using "j" and "k" at the more prompt, displays the command on top of the output. (Marcin Szamotulski) Solution: Put the output below the command. (Christian Brabandt)
* updated for version 7.3.476v7.3.476Bram Moolenaar2012-03-232-1/+4
| | | | | | | Problem: When selecting a block, using "$" to include the end of each line and using "A" and typing a backspace strange things happen. (Yuangchen Xie) Solution: Avoid using a negative length. (Christian Brabandt)
* updated for version 7.3.475v7.3.475Bram Moolenaar2012-03-162-10/+14
| | | | | | Problem: In a terminal with few colors the omnicomplete menu may be hard to see when using the default colors. Solution: Use more explicit colors. (suggested by Alex Henrie)
* updated for version 7.3.474v7.3.474Bram Moolenaar2012-03-162-18/+2
| | | | | Problem: Perl build with gcc 4 fails. Solution: Remove XS() statements. (Yasuhiro Matsumoto)
* updated for version 7.3.473v7.3.473Bram Moolenaar2012-03-162-1/+9
| | | | | | Problem: 'cursorbind' does not work correctly in combination with 'virtualedit' set to "all". Solution: Copy coladd. (Gary Johnson)
* updated for version 7.3.472v7.3.472Bram Moolenaar2012-03-163-7/+16
| | | | | | | | Problem: Crash when using ":redraw" in a BufEnter autocommand and switching to another tab. (驼峰) Solution: Move triggering the the autocommands to after correcting the option values. Also check the row value to be out of bounds. (Christian Brabandt, Sergey Khorev)
* updated for version 7.3.471v7.3.471Bram Moolenaar2012-03-163-3/+5
| | | | | Problem: Can't abort listing placed signs. Solution: Check "got_int". (Christian Brabandt)
* Updated runtime files. Add Dutch translations.Bram Moolenaar2012-03-1148-77/+8331
|
* updated for version 7.3.470v7.3.470Bram Moolenaar2012-03-072-1/+9
| | | | | Problem: Test 62 fails when compiled without GUI and X11. Solution: Don't test :drop when it is not supported.
* updated for version 7.3.469v7.3.469Bram Moolenaar2012-03-072-1/+3
| | | | | Problem: Compiler warning for unused argument without some features. Solution: Add UNUSED.
* updated for version 7.3.468v7.3.468Bram Moolenaar2012-03-073-2/+36
| | | | | Problem: For some compilers the error file is not easily readable. Solution: Use QuickFixCmdPre for more commands. (Marcin Szamotulski)
* updated for version 7.3.467v7.3.467Bram Moolenaar2012-03-072-1/+4
| | | | | | Problem: Cursor positioned wrong at the command line when regaining focus and using some input method. Solution: Do not position the cursor in command line mode.
* updated for version 7.3.466v7.3.466Bram Moolenaar2012-03-072-0/+5
| | | | | | Problem: Get ml_get error hen ":behave mswin" was used and selecting several lines. (A. Sinan Unur) Solution: Adjust the end of the operation. (Christian Brabandt)
* updated for version 7.3.465v7.3.465Bram Moolenaar2012-03-075-17/+72
| | | | | | Problem: Cannot get file name with newline from glob(). Solution: Add argument to glob() and expand() to indicate they must return a list. (Christian Brabandt)
* updated for version 7.3.464v7.3.464Bram Moolenaar2012-03-071-6/+7
| | | | | Problem: Compiler warning for sprintf. Solution: Put the length in a variable. (Dominique Pelle)
* updated for version 7.3.463v7.3.463Bram Moolenaar2012-03-072-4/+9
| | | | | | Problem: When using ":s///c" the cursor is moved away from the match. (Lawman) Solution: Don't move the cursor when do_ask is set. (Christian Brabandt)
* updated for version 7.3.462v7.3.462Bram Moolenaar2012-02-292-11/+49
| | | | | Problem: When using ":loadview" folds may be closed unexpectedly. Solution: Take into account foldlevel. (Xavier de Gaye)
* updated for version 7.3.461v7.3.461Bram Moolenaar2012-02-294-22/+87
| | | | | | | Problem: The InsertCharPre autocommand event is not triggered during completion and when typing several characters quickly. Solution: Also trigger InsertCharPre during completion. Do not read ahead when an InsertCharPre autocommand is defined. (Yasuhiro Matsumoto)
* updated for version 7.3.460v7.3.460Bram Moolenaar2012-02-293-2/+16
| | | | | Problem: Win32: UPX does not compress 64 bit binaries. Solution: Mention and add the alternative: mpress. (Dave Bodenstab)
* updated for version 7.3.459v7.3.459Bram Moolenaar2012-02-293-2/+4
| | | | | Problem: Win32: Warnings for type conversion. Solution: Add type casts. (Mike Williams)
* updated for version 7.3.458v7.3.458Bram Moolenaar2012-02-292-1/+4
| | | | | Problem: Crash when calling smsg() during startup. Solution: Don't use 'shortmess' when it is not set yet.
* updated for version 7.3.457v7.3.457Bram Moolenaar2012-02-292-11/+18
| | | | | | Problem: When setting $VIMRUNTIME later the directory for fetching translated messages is not adjusted. Solution: Put bindtextdomain() in vim_setenv().
* updated for version 7.3.456v7.3.456Bram Moolenaar2012-02-224-24/+108
| | | | | | | Problem: ":tab drop file" has several problems, including moving the current window and opening a new tab for a file that already has a window. Solution: Refactor ":tab drop" handling. (Hirohito Higashi)
* updated for version 7.3.455v7.3.455Bram Moolenaar2012-02-222-1/+12
| | | | | Problem: Using many continuation lines can be slow. Solution: Adjust the reallocation size to the current length.
* updated for version 7.3.454v7.3.454Bram Moolenaar2012-02-222-9/+9
| | | | | Problem: Re-allocating memory slows Vim down. Solution: Use realloc() in ga_grow(). (Dominique Pelle)
* updated for version 7.3.453v7.3.453Bram Moolenaar2012-02-222-2/+7
| | | | | | Problem: Pasting in the command line is slow. Solution: Don't redraw if there is another character to read. (Dominique Pelle)
* updated for version 7.3.452v7.3.452Bram Moolenaar2012-02-222-1/+5
| | | | | | Problem: Undo broken when pasting close to the last line. (Andrey Radev) Solution: Use a flag to remember if the deleted included the last line. (Christian Brabandt)
* Updated runtime files.Bram Moolenaar2012-02-2212-120/+218
|
* updated for version 7.3.451v7.3.451Bram Moolenaar2012-02-223-74/+53
| | | | | Problem: Tcl doesn't work on 64 MS-Windows. Solution: Make it work. (Dave Bodenstab)
* updated for version 7.3.450v7.3.450Bram Moolenaar2012-02-222-4/+8
| | | | | Problem: Win32: Still a problem with "!start /b". Solution: Fix pointer use. (Yasuhiro Matsumoto)
* updated for version 7.3.449v7.3.449Bram Moolenaar2012-02-229-21/+41
| | | | | | Problem: Crash when a BufWinLeave autocommand closes the only other window. (Daniel Hunt) Solution: Abort closing a buffer when it becomes the only one.
* updated for version 7.3.448v7.3.448Bram Moolenaar2012-02-222-13/+44
| | | | | Problem: Win32: Still a problem with "!start /b". Solution: Escape only '|'. (Yasuhiro Matsumoto)
* updated for version 7.3.447v7.3.447Bram Moolenaar2012-02-212-109/+141
| | | | | Problem: Win32: External commands with "start" do not work. Solution: Unescape part of the command. (Yasuhiro Matsumoto)
* updated for version 7.3.446v7.3.446Bram Moolenaar2012-02-205-4/+40
| | | | | Problem: Win32: External commands with special characters don't work. Solution: Add the 'shellxescape' option.
* updated for version 7.3.445v7.3.445Bram Moolenaar2012-02-194-23/+39
| | | | | | Problem: Can't properly escape commands for cmd.exe. Solution: Default 'shellxquote' to '('. Append ')' to make '(command)'. No need to use "/s" for 'shellcmdflag'.
* Update runtime files.Bram Moolenaar2012-02-1320-285/+261
|
* updated for version 7.3.444v7.3.444Bram Moolenaar2012-02-134-2/+11
| | | | | | Problem: ":all!" and ":sall!" give error E477, even though the documentation says these are valid commands. Solution: Support the exclamation mark. (Hirohito Higashi)