- Apr 13, 2012
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
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)
-
- Apr 09, 2012
-
-
Bram Moolenaar authored
Problem: Compiler warnings. Solution: Add function declaration. Remove "offset" argument.
-
- Apr 06, 2012
-
-
Bram Moolenaar authored
Problem: Can't compile with Lua 9.1 or dynamic Lua. Solution: Fix dll_ methods. Fix luado(). (Muraoka Taro, Luis Carvalho)
-
Bram Moolenaar authored
Problem: Two unused variables. Solution: Remove them. (Hong Xu)
-
- Apr 05, 2012
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Can't indent conditions separately from function arguments. Solution: Add the 'k' flag in 'cino. (Lech Lorens)
-
Bram Moolenaar authored
Problem: No tests for Lua. Solution: Add some simple tests for Lua. (Luis Carvalho)
-
Bram Moolenaar authored
Problem: Member confusion in Lua interface. Solution: Fix it. Add luaeval(). (Taro Muraoka, Luis Carvalho)
-
Bram Moolenaar authored
Problem: CTRL-] in Insert mode does not expand abbreviation when used in a mapping. (Yichao Zhou) Solution: Special case using CTRL-]. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: ":help!" in a help file does not work as document. Solution: When in a help file don't give an error message. (thinca)
-
- Mar 28, 2012
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: Build error with mingw64 on Windows 7. Solution: Avoid the step of going through vimres.res. (Guopeng Wen)
-
Bram Moolenaar authored
Problem: When building Vim LDFLAGS isn't passed on to building xxd. Solution: Pass the LDFLAGS value. (James McCoy)
-
Bram Moolenaar authored
Problem: The -E and --echo-wid command line arguments are not mentioned in "vim --help". Solution: Add the help lines. (Dominique Pelle)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: With 'cursorbind' set moving up/down does not always keep the same column. Solution: Set curswant appropriately. (Gary Johnson)
-
Bram Moolenaar authored
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.
-
- Mar 23, 2012
-
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: When 'cursorline' is set the line number highlighting can't be set separately. Solution: Add "CursorLineNr". (Howard Buchholz)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
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)
-
- Mar 16, 2012
-
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Perl build with gcc 4 fails. Solution: Remove XS() statements. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: 'cursorbind' does not work correctly in combination with 'virtualedit' set to "all". Solution: Copy coladd. (Gary Johnson)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Can't abort listing placed signs. Solution: Check "got_int". (Christian Brabandt)
-
- Mar 11, 2012
-
-
Bram Moolenaar authored
-
- Mar 07, 2012
-
-
Bram Moolenaar authored
Problem: Test 62 fails when compiled without GUI and X11. Solution: Don't test :drop when it is not supported.
-
Bram Moolenaar authored
Problem: Compiler warning for unused argument without some features. Solution: Add UNUSED.
-
Bram Moolenaar authored
Problem: For some compilers the error file is not easily readable. Solution: Use QuickFixCmdPre for more commands. (Marcin Szamotulski)
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Compiler warning for sprintf. Solution: Put the length in a variable. (Dominique Pelle)
-
Bram Moolenaar authored
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)
-
- Feb 29, 2012
-
-
Bram Moolenaar authored
Problem: When using ":loadview" folds may be closed unexpectedly. Solution: Take into account foldlevel. (Xavier de Gaye)
-
Bram Moolenaar authored
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)
-