- Jun 20, 2012
-
-
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.
-
Bram Moolenaar authored
Problem: Many #ifdefs for MB_MAXBYTES. Solution: Also define MB_MAXBYTES without the +multi_byte feature. Fix places where the buffer didn't include space for a NUL byte.
-
Bram Moolenaar authored
Problem: When using an InsertCharPre autocommand autoindent fails. Solution: Proper handling of v:char. (Alexey Radkov)
-
Bram Moolenaar authored
Problem: Memory leak when writing undo file. Solution: Free the ACL. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Compiler warning from Clang. Solution: Use a different way to point inside a string. (Dominique Pelle)
-
- May 26, 2012
-
-
Bram Moolenaar authored
Problem: GUI does not work on MS-Windows. Solution: Add the missing #ifdef. (Patrick Avery)
-
- May 25, 2012
-
-
Bram Moolenaar authored
Problem: Gvim does not work when 'guioptions' includes "f". (Davido) Solution: Call gui_mch_init_check() when running GUI in the foreground. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Using a count before "v" and "V" does not work (Kikyous) Solution: Make the count select that many characters or lines. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Crash when closing last window in a tab. (Alex Efros) Solution: Use common code in close_last_window_tabpage(). (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Clang complains about non-ASCII characters in a string. Solution: Change to \x88 form. (Dominique Pelle)
-