summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-04-20updated for version 7.3.498v7.3.498Bram Moolenaar
Problem: The behavior of the "- register changes depending on value of the 'clipboard' option. (Szamotulski) Solution: Also set the "- register when the register is "*" or "+". (Christian Brabandt)
2012-04-20updated for version 7.3.497v7.3.497Bram Moolenaar
Problem: Crash when doing ":python print" and compiled with gcc and the optimizer enabled. Solution: Avoid the crash, doesn't really fix the problem. (Christian Brabandt)
2012-04-13Updated runtime files.Bram Moolenaar
2012-04-13updated for version 7.3.496v7.3.496Bram Moolenaar
Problem: MS-DOS: When "diff" trips over difference in line separators some tests fail. Solution: Make some .ok files use unix line separators. (David Pope)
2012-04-09updated for version 7.3.495v7.3.495Bram Moolenaar
Problem: Compiler warnings. Solution: Add function declaration. Remove "offset" argument.
2012-04-06updated for version 7.3.494v7.3.494Bram Moolenaar
Problem: Can't compile with Lua 9.1 or dynamic Lua. Solution: Fix dll_ methods. Fix luado(). (Muraoka Taro, Luis Carvalho)
2012-04-06updated for version 7.3.493v7.3.493Bram Moolenaar
Problem: Two unused variables. Solution: Remove them. (Hong Xu)
2012-04-05Updated runtime files.Bram Moolenaar
2012-04-05updated for version 7.3.492v7.3.492Bram Moolenaar
Problem: Can't indent conditions separately from function arguments. Solution: Add the 'k' flag in 'cino. (Lech Lorens)
2012-04-05updated for version 7.3.491v7.3.491Bram Moolenaar
Problem: No tests for Lua. Solution: Add some simple tests for Lua. (Luis Carvalho)
2012-04-05updated for version 7.3.490v7.3.490Bram Moolenaar
Problem: Member confusion in Lua interface. Solution: Fix it. Add luaeval(). (Taro Muraoka, Luis Carvalho)
2012-04-05updated for version 7.3.489v7.3.489Bram Moolenaar
Problem: CTRL-] in Insert mode does not expand abbreviation when used in a mapping. (Yichao Zhou) Solution: Special case using CTRL-]. (Christian Brabandt)
2012-04-05updated for version 7.3.488v7.3.488Bram Moolenaar
Problem: ":help!" in a help file does not work as document. Solution: When in a help file don't give an error message. (thinca)
2012-03-28Updated runtime files.Bram Moolenaar
2012-03-28updated for version 7.3.487v7.3.487Bram Moolenaar
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.
2012-03-28updated for version 7.3.486v7.3.486Bram Moolenaar
Problem: Build error with mingw64 on Windows 7. Solution: Avoid the step of going through vimres.res. (Guopeng Wen)
2012-03-28updated for version 7.3.485v7.3.485Bram Moolenaar
Problem: When building Vim LDFLAGS isn't passed on to building xxd. Solution: Pass the LDFLAGS value. (James McCoy)
2012-03-28updated for version 7.3.484v7.3.484Bram Moolenaar
Problem: The -E and --echo-wid command line arguments are not mentioned in "vim --help". Solution: Add the help lines. (Dominique Pelle)
2012-03-28updated for version 7.3.483v7.3.483Bram Moolenaar
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)
2012-03-28updated for version 7.3.482v7.3.482Bram Moolenaar
Problem: With 'cursorbind' set moving up/down does not always keep the same column. Solution: Set curswant appropriately. (Gary Johnson)
2012-03-28updated for version 7.3.481v7.3.481Bram Moolenaar
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.
2012-03-23updated for version 7.3.480v7.3.480Bram Moolenaar
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)
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)