- Nov 28, 2013
-
-
Bram Moolenaar authored
Problem: ColorScheme autocommand matches with the current buffer name. Solution: Match with the colorscheme name. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: "zG" and "zW" leave temp files around on MS-Windows. Solution: Delete the temp files when exiting. (Ken Takata)
-
Bram Moolenaar authored
Problem: Python: When vim.eval() encounters a Vim error, a try/catch in the Python code doesn't catch it. (Yggdroot Chen) Solution: Throw exceptions on errors in vim.eval(). (ZyX)
-
Bram Moolenaar authored
Problem: Can't build with Ruby using Cygwin. Solution: Fix library name in makefile. (Steve Hall)
-
Bram Moolenaar authored
Problem: Completing a tag pattern may give an error for invalid pattern. Solution: Suppress the error, just return no matches.
-
Bram Moolenaar authored
Problem: ":help s/\_" reports an internal error. (John Beckett) Solution: Check for NUL and invalid character classes.
-
Bram Moolenaar authored
-
- Nov 21, 2013
-
-
Bram Moolenaar authored
Problem: Dos installer uses an old way to escape spaces in the diff command. Solution: Adjust the quoting to the new default shellxquote. (Ben Fritz)
-
Bram Moolenaar authored
Problem: Crash when interrupting "z=". Solution: Add safety check for word length. (Christian Brabandt, Dominique Pelle)
-
Bram Moolenaar authored
Problem: Using \1 in pattern goes one line too far. (Bohr Shaw, John Little) Solution: Only advance the match end for the matched characters in the last line.
-
Bram Moolenaar authored
Problem: NFA regexp doesn't handle backreference correctly. (Ryuichi Hayashida, Urtica Dioica) Solution: Always add NFA_SKIP, also when it already exists at the start position.
-
Bram Moolenaar authored
Problem: Append in blockwise Visual mode with "$" is wrong. Solution: After "$" don't use the code that checks if the cursor was moved. (Hirohito Higashi, Ken Takata)
-
Bram Moolenaar authored
Problem: When using ":'<,'>del" errors may be given for the visual line numbers being out of range. Solution: Reset Visual mode in ":del". (Lech Lorens)
-
Bram Moolenaar authored
Problem: Unexpected behavior change related to 'virtualedit'. (Ingo Karkat) Solution: Update the valid cursor position. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Can't change directory to an UNC path. Solution: Use win32_getattrs() in mch_getperm(). (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Regexp for LuaJIT version doesn't work on BSD. Solution: Use "*" instead of "\+" and "\?". (Ozaki)
-
- Nov 17, 2013
-
-
Bram Moolenaar authored
Problem: Configure may not find that -lint is needed for gettext(). Solution: Check for gettext() with empty $LIBS. (Thomas De Schampheleire)
-
Bram Moolenaar authored
Problem: Configure can't use LuaJIT on ubuntu 12.04. Solution: Adjust the configure regexp that locates the version number. (Charles Strahan)
-
- Nov 14, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Can't build small version. Solution: Add #ifdef where the b_cjk flag is used. (Ken Takata)
-
- Nov 12, 2013
-
-
Bram Moolenaar authored
Problem: Missing semicolon. Solution: Add the semicolon.
-
Bram Moolenaar authored
Problem: Win32: When a directory name contains an exclamation mark, completion doesn't complete the contents of the directory. Solution: Escape the exclamation mark. (Jan Stocker)
-
Bram Moolenaar authored
Problem: When editing a file in a directory mounted through sshfs Vim doesn't set the security context on a renamed file. Solution: Add mch_copy_sec() to vim_rename(). (Peter Backes)
-
Bram Moolenaar authored
Problem: When spell checking is enabled Asian characters are always marked as error. Solution: When 'spelllang' contains "cjk" do not mark Asian characters as error. (Ken Takata)
-
- Nov 11, 2013
-
-
Bram Moolenaar authored
Problem: Compiler warning on 64 bit Windows systems. Solution: Fix type cast. (Mike Williams)
-
Bram Moolenaar authored
Problem: Skipping over an expression when not evaluating it does not work properly for dict members. Solution: Skip over unrecognized expression. (ZyX)
-
Bram Moolenaar authored
Problem: When inserting text in Visual block mode and moving the cursor the wrong text gets repeated in other lines. Solution: Use the '[ mark to find the start of the actually inserted text. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Python: interrupt not being properly discarded. (Yggdroot Chen) Solution: Discard interrupt in VimTryEnd. (ZyX)
-
- Nov 09, 2013
-
-
Bram Moolenaar authored
Problem: It's hard to avoid adding a used pattern to the search history. Solution: Add the ":keeppatterns" modifier. (Christian Brabandt)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Using "gf" in a changed buffer suggests adding "!", which is not possible. (Tim Chase) Solution: Pass a flag to check_changed() wether adding ! make sense.
-
Bram Moolenaar authored
Problem: Wrong logic when ANALYZE is "yes". Solution: Use or instead of and. (KF Leong)
-
Bram Moolenaar authored
Problem: Missing documentation for v:hlsearch. Solution: Include the right file in the patch.
-
- Nov 08, 2013
-
-
Bram Moolenaar authored
Problem: A script cannot detect whether 'hlsearch' highlighting is actually displayed. Solution: Add the "v:hlsearch" variable. (ZyX)
-
Bram Moolenaar authored
Problem: MSVC 2013 is not supported. Solution: Recognize and support MSVC 2013. (Ed Brown)
-
- Nov 07, 2013
-
-
Bram Moolenaar authored
Problem: DOS installer creates shortcut without a path, resulting in the current directory to be C:\Windows\system32. Solution: Use environment variables.
-
Bram Moolenaar authored
Problem: "cgn" does not wrap around the end of the file. (Dimitrov Dimitrov) Solution: Restore 'wrapscan' earlier. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Locally setting 'undolevels' is not tested. Solution: Add a test. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: When undo'ing all changes and creating a new change the undo structure is incorrect. (Christian Brabandt) Solution: When deleting the branch starting at the old header, delete the whole branch, not just the first entry.
-
- Nov 06, 2013
-
-
Bram Moolenaar authored
Problem: Setting undolevels for one buffer changes undo in another. Solution: Make 'undolevels' a global-local option. (Christian Brabandt)
-