- Jun 29, 2012
-
-
Bram Moolenaar authored
Problem: When pasting a register in the search command line a CTRL-L character is not pasted. (Dominique Pelle) Solution: Escape the CTRL-L. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Using array index before bounds checking. Solution: Swap the parts of the condition. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Duplicate statement in if and else. (Dominique Pelle) Solution: Remove the condition and add a TODO.
-
Bram Moolenaar authored
Problem: Duplicated condition. Solution: Remove one. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: ":vimgrep" does not obey 'wildignore'. Solution: Apply 'wildignore' and 'suffixes' to ":vimgrep". (Ingo Karkat)
-
Bram Moolenaar authored
Problem: Evaluating Vim expression in Python is insufficient. Solution: Add vim.bindeval(). Also add pyeval() and py3eval(). (ZyX)
-
Bram Moolenaar authored
Problem: Bad indents for #ifdefs. Solution: Add and remove spaces. (Elias Diem)
-
Bram Moolenaar authored
Problem: Missing copyright notice. Solution: Add Vim copyright notice. (Taro Muraoka)
-
- Jun 20, 2012
-
-
Bram Moolenaar authored
Problem: Redo after completion does not work correctly when refresh: always is not used. (Raymond Ko) Solution: Check the compl_opt_refresh_always flag. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Can't generate proto file for Python 3. Solution: Add PYTHON3_CFLAGS to LINT_CFLAGS.
-
Bram Moolenaar authored
Problem: Warning for pointer conversion. Solution: Add type cast.
-
Bram Moolenaar authored
Problem: Can't build with tiny features. Solution: Add #ifdef.
-
Bram Moolenaar authored
Problem: ":profdel" should not work when the +profile feature is disabled. Solution: Call ex_ni(). (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Using refresh: always in a complete function breaks the "." command. (Val Markovic) Solution: Add match leader to the redo buffer. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Get an error for a locked argument in extend(). Solution: Initialize the lock flag for a dictionary. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: home_replace() does not work with 8.3 filename. Solution: Make ":p" expand 8.3 name to full path. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Memory access error. (Gary Johnson) Solution: Allocate one more byte. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Crash when an autocommand wipes out a buffer when it is hidden. Solution: Restore the current window when needed. (Christian Brabandt)
-
- Jun 14, 2012
-
-
Bram Moolenaar authored
Problem: Compiler warnings on 64 bit Windows. Solution: Add type casts. (Mike Williams)
-
- Jun 13, 2012
-
-
Bram Moolenaar authored
Problem: Building on IBM z/OS fails. Solution: Adjust configure. Use the QUOTESED value from config.mk instead of the hard coded one in Makefile. (Stephen Bovy)
-
Bram Moolenaar authored
Problem: Compiler warning for unused argument. Solution: Add UNUSED.
-
Bram Moolenaar authored
Problem: With double-width characters and 'listchars' containing "precedes" the text is displayed one cell off. Solution: Check for double-width character being overwritten by the "precedes" character. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Formatting inside comments does not use the "2" flag in 'formatoptions'. Solution: Support the "2" flag. (Tor Perkins)
-
Bram Moolenaar authored
Problem: When using :tablose a TabEnter autocommand is triggered too early. (Karthick) Solution: Don't trigger *Enter autocommands before closing the tab. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: With "j" in 'formatoptions' a list leader is not removed. (Gary Johnson) Solution: Don't ignore the start of a three part comment. (Lech Lorens)
-
Bram Moolenaar authored
Problem: In 'cinoptions' "0s" is interpreted as one shiftwidth. (David Pineau) Solution: Use the zero as zero. (Lech Lorens)
-
- Jun 07, 2012
-
-
Bram Moolenaar authored
Problem: Compiler warning on 64 bit Windows. Solution: Add type cast. (Mike Williams)
-
- Jun 06, 2012
-
-
Bram Moolenaar authored
Problem: Compiler warning for uninitialized variable. Solution: Initialize it.
-
Bram Moolenaar authored
Problem: Bogus line break. Solution: Remove the line break.
-
Bram Moolenaar authored
Problem: When closing a window or buffer autocommands may close it too, causing problems for where the autocommand was invoked from. Solution: Add the w_closing and b_closing flags. When set disallow ":q" and ":close" to prevent recursive closing.
-
Bram Moolenaar authored
Problem: There is no good way to close a quickfix window when closing the last ordinary window. Solution: Add the QuitPre autocommand.
-
Bram Moolenaar authored
Problem: The cursor is in the wrong line after using ":copen". (John Beckett) Solution: Invoke more drastic redraw method.
-
Bram Moolenaar authored
Problem: Function is sometimes unused. Solution: Add #ifdef.
-
Bram Moolenaar authored
Problem: When joining lines comment leaders need to be removed manually. Solution: Add the 'j' flag to 'formatoptions'. (Lech Lorens)
-
Bram Moolenaar authored
Problem: Cursor is left on the text instead of the command line. Solution: Don't call setcursor() in command line mode.
-
Bram Moolenaar authored
Problem: Redrawing a character on the command line does not work properly for multi-byte charactes. Solution: Count the number of bytes in a character. (Yukihiro Nakadaira)
-
- Jun 01, 2012
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: 'efm' does not handle Tabs in pointer lines. Solution: Add Tab support. Improve tests. (Lech Lorens)
-
Bram Moolenaar authored
Problem: Unecessary call to init_spell_chartab(). Solution: Delete the call.
-
Bram Moolenaar authored
Problem: When spell checking the German sharp s is not seen as a word character. (Aexl Bender) Solution: In utf_islower() return true for the sharp s. Note: also need updated spell file for this to take effect.
-