- Jan 14, 2014
-
-
Bram Moolenaar authored
Problem: Python: Cannot iterate over options. Solution: Add options iterator. (ZyX)
-
Bram Moolenaar authored
Problem: Python: slices with steps are not supported. Solution: Support slices in Python vim.List. (ZyX)
-
Bram Moolenaar authored
Problem: :keeppatterns is not respected for :s. Solution: Check the keeppatterns flag. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Get E685 error when assigning a function to an autoload variable. (Yukihiro Nakadaira) Solution: Instead of having a global no_autoload variable, pass an autoload flag down to where it is used. (ZyX)
-
Bram Moolenaar authored
Problem: Cannot build with Cygwin and X11. Solution: Include Xwindows.h instead of windows.h. (Lech Lorens)
-
Bram Moolenaar authored
Problem: Cursor moves to wrong position when using "gj" after "$" and virtual editing is active. Solution: Make "gj" behave differently when virtual editing is active. (Hirohito Higashi)
-
Bram Moolenaar authored
Problem: When starting Vim with "-u NONE" v:oldfiles is NULL. Solution: Set v:oldfiles to an empty list. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: getregtype() does not return zero for unknown register. Solution: Adjust documention: return empty string for unknown register. Check the register name to be valid. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: MingW also supports intptr_t for OPEN_OH_ARGTYPE. Solution: Adjust #ifdef. (Ken Takata)
-
Bram Moolenaar authored
Problem: TextChangedI is not triggered. Solution: Reverse check for "ready". (lilydjwg)
-
- Jan 12, 2014
-
-
Bram Moolenaar authored
Problem: On MS-Windows 8 IME input doen't work correctly. Solution: Work around the problem. (Nobuhiro Takasaki)
-
- Jan 10, 2014
-
-
Bram Moolenaar authored
Problem: Problems when building with Borland: st_mode is signed short; can't build with Python; temp files not ignored by Mercurial; building with DEBUG doesn't define _DEBUG. Solution: Fix the problems. (Ken Takata)
-
Bram Moolenaar authored
Problem: Crash when wiping out buffer triggers autocommand that wipes out only other buffer. Solution: Do not delete the last buffer, make it empty. (Hirohito Higashi)
-
Bram Moolenaar authored
Problem: Crash when using :cd in autocommand. (François Ingelrest) Solution: Set w_localdir to NULL after freeing it. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Directory change messages are not recognized. Solution: Fix using a character range literally. (Lech Lorens)
-
Bram Moolenaar authored
Problem: Cannot use IME with Windows 8 console. Solution: Change the user of ReadConsoleInput() and PeekConsoleInput(). (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: MS-Windows: When saving a file with a UNC path the file becomes read-only. Solution: Don't mix up Win32 attributes and Unix attributes. (Ken Takata)
-
- Jan 07, 2014
-
-
Bram Moolenaar authored
-
- Jan 06, 2014
-
-
Bram Moolenaar authored
Problem: Missing dot in MingW test Makefile. Solution: Add the dot. (Michael Soyka)
-
Bram Moolenaar authored
Problem: Spurious space in MingW Makefile. Solution: Remove the space. (Michael Soyka)
-
Bram Moolenaar authored
Problem: Clang warns for using NUL. Solution: Change NUL to NULL. (Dominique Pelle)
-
- Jan 05, 2014
-
-
Bram Moolenaar authored
Problem: Win32: flags and inherit_handles arguments mixed up. Solution: Swap the argument. (cs86661)
-
- Dec 15, 2013
-
-
Bram Moolenaar authored
-
- Dec 14, 2013
-
-
Bram Moolenaar authored
Problem: Syncbind causes E315 errors in some situations. (Liang Li) Solution: Set and restore curbuf in ex_syncbind(). (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Relative line numbers mix up windows when using folds. Solution: Use hasFoldingWin() instead of hasFolding(). (Lech Lorens)
-
Bram Moolenaar authored
Problem: getline(-1) returns zero. (mvxxc) Solution: Return an empty string.
-
Bram Moolenaar authored
Problem: Perl 5.18 for MSVC doesn't work. Solution: Add check in makefile and define __inline. (Ken Takata)
-
Bram Moolenaar authored
Problem: Perl 5.18 on Unix doesn't work. Solution: Move workaround to after including vim.h. (Ken Takata)
-
- Dec 12, 2013
-
-
Bram Moolenaar authored
Problem: Compiler warnings for "const" and incompatible types. Solution: Remove "const", add type cast. (Ken Takata)
-
- Dec 11, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Win32: Dealing with messages may not work for multi-byte chars. Solution: Use pDispatchMessage(). (Ken Takata)
-
Bram Moolenaar authored
Problem: Win32: Getting host name does not use wide function. Solution: Use GetComputerNameW() if possible. (Ken Takata)
-
Bram Moolenaar authored
Problem: Win32: Getting user name does not use wide function. Solution: Use GetUserNameW() if possible. (Ken Takata)
-
Bram Moolenaar authored
Problem: Win32: When 'encoding' is set to "utf-8" and the active codepage is cp932 then ":grep" and other commands don't work for multi-byte characters. Solution: (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Completion doesn't work for ":py3d" and ":py3f". (Bohr Shaw) Solution: Skip over letters after ":py3".
-
Bram Moolenaar authored
Problem: Can't build with Perl 5.18 on Linux. (Lcd 47) Solution: Add #ifdef. (Ken Takata)
-
Bram Moolenaar authored
Problem: Vim doesn't work well on OpenVMS. Solution: Fix various problems. (Samuel Ferencik)
-
Bram Moolenaar authored
Problem: It's possible that redrawing the status lines causes win_redr_custom() to be called recursively. Solution: Protect against recursiveness. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Can't build with Cygwin/MingW and Perl 5.18. Solution: Add a linker argument for the Perl library. (Cesar Romani) Adjust CFLAGS and LIB. (Cesar Romani) Move including inline.h further down. (Ken Takata)
-
Bram Moolenaar authored
Problem: When a mapping starts with a space, the typed space does not show up for 'showcmd'. Solution: Show "<20>". (Brook Hong)
-