summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-03-23updated for version 7.3.479v7.3.479Bram Moolenaar
Problem: When 'cursorline' is set the line number highlighting can't be set separately. Solution: Add "CursorLineNr". (Howard Buchholz)
2012-03-23updated for version 7.3.478v7.3.478Bram Moolenaar
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)
2012-03-23updated for version 7.3.477v7.3.477Bram Moolenaar
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)
2012-03-23updated for version 7.3.476v7.3.476Bram Moolenaar
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)
2012-03-16updated for version 7.3.475v7.3.475Bram Moolenaar
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)
2012-03-16updated for version 7.3.474v7.3.474Bram Moolenaar
Problem: Perl build with gcc 4 fails. Solution: Remove XS() statements. (Yasuhiro Matsumoto)
2012-03-16updated for version 7.3.473v7.3.473Bram Moolenaar
Problem: 'cursorbind' does not work correctly in combination with 'virtualedit' set to "all". Solution: Copy coladd. (Gary Johnson)
2012-03-16updated for version 7.3.472v7.3.472Bram Moolenaar
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)
2012-03-16updated for version 7.3.471v7.3.471Bram Moolenaar
Problem: Can't abort listing placed signs. Solution: Check "got_int". (Christian Brabandt)
2012-03-11Updated runtime files. Add Dutch translations.Bram Moolenaar
2012-03-07updated for version 7.3.470v7.3.470Bram Moolenaar
Problem: Test 62 fails when compiled without GUI and X11. Solution: Don't test :drop when it is not supported.
2012-03-07updated for version 7.3.469v7.3.469Bram Moolenaar
Problem: Compiler warning for unused argument without some features. Solution: Add UNUSED.
2012-03-07updated for version 7.3.468v7.3.468Bram Moolenaar
Problem: For some compilers the error file is not easily readable. Solution: Use QuickFixCmdPre for more commands. (Marcin Szamotulski)
2012-03-07updated for version 7.3.467v7.3.467Bram Moolenaar
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.
2012-03-07updated for version 7.3.466v7.3.466Bram Moolenaar
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)
2012-03-07updated for version 7.3.465v7.3.465Bram Moolenaar
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)
2012-03-07updated for version 7.3.464v7.3.464Bram Moolenaar
Problem: Compiler warning for sprintf. Solution: Put the length in a variable. (Dominique Pelle)
2012-03-07updated for version 7.3.463v7.3.463Bram Moolenaar
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)
2012-02-29updated for version 7.3.462v7.3.462Bram Moolenaar
Problem: When using ":loadview" folds may be closed unexpectedly. Solution: Take into account foldlevel. (Xavier de Gaye)
2012-02-29updated for version 7.3.461v7.3.461Bram Moolenaar
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)
2012-02-29updated for version 7.3.460v7.3.460Bram Moolenaar
Problem: Win32: UPX does not compress 64 bit binaries. Solution: Mention and add the alternative: mpress. (Dave Bodenstab)
2012-02-29updated for version 7.3.459v7.3.459Bram Moolenaar
Problem: Win32: Warnings for type conversion. Solution: Add type casts. (Mike Williams)
2012-02-29updated for version 7.3.458v7.3.458Bram Moolenaar
Problem: Crash when calling smsg() during startup. Solution: Don't use 'shortmess' when it is not set yet.
2012-02-29updated for version 7.3.457v7.3.457Bram Moolenaar
Problem: When setting $VIMRUNTIME later the directory for fetching translated messages is not adjusted. Solution: Put bindtextdomain() in vim_setenv().
2012-02-22updated for version 7.3.456v7.3.456Bram Moolenaar
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)
2012-02-22updated for version 7.3.455v7.3.455Bram Moolenaar
Problem: Using many continuation lines can be slow. Solution: Adjust the reallocation size to the current length.
2012-02-22updated for version 7.3.454v7.3.454Bram Moolenaar
Problem: Re-allocating memory slows Vim down. Solution: Use realloc() in ga_grow(). (Dominique Pelle)
2012-02-22updated for version 7.3.453v7.3.453Bram Moolenaar
Problem: Pasting in the command line is slow. Solution: Don't redraw if there is another character to read. (Dominique Pelle)
2012-02-22updated for version 7.3.452v7.3.452Bram Moolenaar
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)
2012-02-22Updated runtime files.Bram Moolenaar
2012-02-22updated for version 7.3.451v7.3.451Bram Moolenaar
Problem: Tcl doesn't work on 64 MS-Windows. Solution: Make it work. (Dave Bodenstab)
2012-02-22updated for version 7.3.450v7.3.450Bram Moolenaar
Problem: Win32: Still a problem with "!start /b". Solution: Fix pointer use. (Yasuhiro Matsumoto)
2012-02-22updated for version 7.3.449v7.3.449Bram Moolenaar
Problem: Crash when a BufWinLeave autocommand closes the only other window. (Daniel Hunt) Solution: Abort closing a buffer when it becomes the only one.
2012-02-22updated for version 7.3.448v7.3.448Bram Moolenaar
Problem: Win32: Still a problem with "!start /b". Solution: Escape only '|'. (Yasuhiro Matsumoto)
2012-02-21updated for version 7.3.447v7.3.447Bram Moolenaar
Problem: Win32: External commands with "start" do not work. Solution: Unescape part of the command. (Yasuhiro Matsumoto)
2012-02-20updated for version 7.3.446v7.3.446Bram Moolenaar
Problem: Win32: External commands with special characters don't work. Solution: Add the 'shellxescape' option.
2012-02-19updated for version 7.3.445v7.3.445Bram Moolenaar
Problem: Can't properly escape commands for cmd.exe. Solution: Default 'shellxquote' to '('. Append ')' to make '(command)'. No need to use "/s" for 'shellcmdflag'.
2012-02-13Update runtime files.Bram Moolenaar
2012-02-13updated for version 7.3.444v7.3.444Bram Moolenaar
Problem: ":all!" and ":sall!" give error E477, even though the documentation says these are valid commands. Solution: Support the exclamation mark. (Hirohito Higashi)
2012-02-12updated for version 7.3.443v7.3.443Bram Moolenaar
Problem: MS-Windows: 'shcf' and 'shellxquote' defaults are not very good. Solution: Make a better guess when 'shell' is set to "cmd.exe". (Ben Fritz)
2012-02-12updated for version 7.3.442v7.3.442Bram Moolenaar
Problem: Still read modelines for ":doautocmd". Solution: Move check for <nomodeline> to separate function.
2012-02-12updated for version 7.3.441v7.3.441Bram Moolenaar
Problem: Newer versions of MzScheme (Racket) require earlier (trampolined) initialisation. Solution: Call mzscheme_main() early in main(). (Sergey Khorev)
2012-02-12updated for version 7.3.440v7.3.440Bram Moolenaar
Problem: Vim does not support UTF8_STRING for the X selection. Solution: Add UTF8_STRING atom support. (Alex Efros) Use it only when 'encoding' is set to Unicode.
2012-02-12updated for version 7.3.439v7.3.439Bram Moolenaar
Problem: Compiler warnings to size casts in Perl interface. Solution: Use XS macros. (James McCoy)
2012-02-12updated for version 7.3.438v7.3.438Bram Moolenaar
Problem: There is no way to avoid ":doautoall" reading modelines. Solution: Add the <nomodeline> argument. Adjust documentation.
2012-02-11updated for version 7.3.437v7.3.437Bram Moolenaar
Problem: Continue looping inside FOR_ALL_TAB_WINDOWS even when already done. Solution: Use goto instead of break. (Hirohito Higashi)
2012-02-11updated for version 7.3.436v7.3.436Bram Moolenaar
Problem: Compiler warnings for types on Windows. Solution: Add type casts. (Mike Williams)
2012-02-11updated for version 7.3.435v7.3.435Bram Moolenaar
Problem: Compiler warning for unused variable. Solution: Move the variable inside #ifdef.
2012-02-06updated for version 7.3.434v7.3.434Bram Moolenaar
Problem: Using join() can be slow. Solution: Compute the size of the result before allocation to avoid a lot of allocations and copies. (Taro Muraoka)
2012-02-05updated for version 7.3.433v7.3.433Bram Moolenaar
Problem: Using continued lines in a Vim script can be slow. Solution: Instead of reallocating for every line use a growarray. (Yasuhiro Matsumoto)