summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-11-21updated for version 7.4.103v7.4.103Bram Moolenaar
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)
2013-11-21updated for version 7.4.102v7.4.102Bram Moolenaar
Problem: Crash when interrupting "z=". Solution: Add safety check for word length. (Christian Brabandt, Dominique Pelle)
2013-11-21updated for version 7.4.101v7.4.101Bram Moolenaar
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.
2013-11-21updated for version 7.4.100v7.4.100Bram Moolenaar
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.
2013-11-21updated for version 7.4.099v7.4.099Bram Moolenaar
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)
2013-11-21updated for version 7.4.098v7.4.098Bram Moolenaar
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)
2013-11-21updated for version 7.4.097v7.4.097Bram Moolenaar
Problem: Unexpected behavior change related to 'virtualedit'. (Ingo Karkat) Solution: Update the valid cursor position. (Christian Brabandt)
2013-11-21updated for version 7.4.096v7.4.096Bram Moolenaar
Problem: Can't change directory to an UNC path. Solution: Use win32_getattrs() in mch_getperm(). (Christian Brabandt)
2013-11-21updated for version 7.4.095v7.4.095Bram Moolenaar
Problem: Regexp for LuaJIT version doesn't work on BSD. Solution: Use "*" instead of "\+" and "\?". (Ozaki)
2013-11-17updated for version 7.4.094v7.4.094Bram Moolenaar
Problem: Configure may not find that -lint is needed for gettext(). Solution: Check for gettext() with empty $LIBS. (Thomas De Schampheleire)
2013-11-17updated for version 7.4.093v7.4.093Bram Moolenaar
Problem: Configure can't use LuaJIT on ubuntu 12.04. Solution: Adjust the configure regexp that locates the version number. (Charles Strahan)
2013-11-14Update runtime files.Bram Moolenaar
2013-11-14updated for version 7.4.092v7.4.092Bram Moolenaar
Problem: Can't build small version. Solution: Add #ifdef where the b_cjk flag is used. (Ken Takata)
2013-11-12updated for version 7.4.091v7.4.091Bram Moolenaar
Problem: Missing semicolon. Solution: Add the semicolon.
2013-11-12updated for version 7.4.090v7.4.090Bram Moolenaar
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)
2013-11-12updated for version 7.4.089v7.4.089Bram Moolenaar
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)
2013-11-12updated for version 7.4.088v7.4.088Bram Moolenaar
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)
2013-11-11updated for version 7.4.087v7.4.087Bram Moolenaar
Problem: Compiler warning on 64 bit Windows systems. Solution: Fix type cast. (Mike Williams)
2013-11-11updated for version 7.4.086v7.4.086Bram Moolenaar
Problem: Skipping over an expression when not evaluating it does not work properly for dict members. Solution: Skip over unrecognized expression. (ZyX)
2013-11-11updated for version 7.4.085v7.4.085Bram Moolenaar
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)
2013-11-11updated for version 7.4.084v7.4.084Bram Moolenaar
Problem: Python: interrupt not being properly discarded. (Yggdroot Chen) Solution: Discard interrupt in VimTryEnd. (ZyX)
2013-11-09updated for version 7.4.083v7.4.083Bram Moolenaar
Problem: It's hard to avoid adding a used pattern to the search history. Solution: Add the ":keeppatterns" modifier. (Christian Brabandt)
2013-11-09Updated runtime files.Bram Moolenaar
2013-11-09updated for version 7.4.082v7.4.082Bram Moolenaar
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.
2013-11-09updated for version 7.4.081v7.4.081Bram Moolenaar
Problem: Wrong logic when ANALYZE is "yes". Solution: Use or instead of and. (KF Leong)
2013-11-09updated for version 7.4.080v7.4.080Bram Moolenaar
Problem: Missing documentation for v:hlsearch. Solution: Include the right file in the patch.
2013-11-08updated for version 7.4.079v7.4.079Bram Moolenaar
Problem: A script cannot detect whether 'hlsearch' highlighting is actually displayed. Solution: Add the "v:hlsearch" variable. (ZyX)
2013-11-08updated for version 7.4.078v7.4.078Bram Moolenaar
Problem: MSVC 2013 is not supported. Solution: Recognize and support MSVC 2013. (Ed Brown)
2013-11-07updated for version 7.4.077v7.4.077Bram Moolenaar
Problem: DOS installer creates shortcut without a path, resulting in the current directory to be C:\Windows\system32. Solution: Use environment variables.
2013-11-07updated for version 7.4.076v7.4.076Bram Moolenaar
Problem: "cgn" does not wrap around the end of the file. (Dimitrov Dimitrov) Solution: Restore 'wrapscan' earlier. (Christian Brabandt)
2013-11-07updated for version 7.4.075v7.4.075Bram Moolenaar
Problem: Locally setting 'undolevels' is not tested. Solution: Add a test. (Christian Brabandt)
2013-11-07updated for version 7.4.074v7.4.074Bram Moolenaar
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.
2013-11-06updated for version 7.4.073v7.4.073Bram Moolenaar
Problem: Setting undolevels for one buffer changes undo in another. Solution: Make 'undolevels' a global-local option. (Christian Brabandt)
2013-11-06updated for version 7.4.072v7.4.072Bram Moolenaar
Problem: Crash when using Insert mode completion. Solution: Avoid going past the end of pum_array. (idea by Fransisco Lopes)
2013-11-06updated for version 7.4.071v7.4.071Bram Moolenaar
Problem: Passing limits around too often. Solution: Use limits from buffer.
2013-11-05updated for version 7.4.070v7.4.070Bram Moolenaar
Problem: Can't compile with tiny features. (Tony Mechelynck) Solution: Add #ifdef.
2013-11-05updated for version 7.4.069v7.4.069Bram Moolenaar
Problem: Cannot right shift lines starting with #. Solution: Allow the right shift when 'cino' contains #N with N > 0. (Christian Brabandt) Refactor parsing 'cino', store the values in the buffer.
2013-11-04updated for version 7.4.068v7.4.068Bram Moolenaar
Problem: Cannot build Vim on Mac with non-Apple compilers. Solution: Remove the -no-cpp-precomp flag. (Misty De Meo)
2013-11-04updated for version 7.4.067v7.4.067Bram Moolenaar
Problem: After inserting comment leader, CTRL-\ CTRL-O does move the cursor. (Wiktor Ruben) Solution: Avoid moving the cursor. (Christian Brabandt)
2013-11-04updated for version 7.4.066v7.4.066Bram Moolenaar
Problem: MS-Windows: When there is a colon in the file name (sub-stream feature) the swap file name is wrong. Solution: Change the colon to "%". (Yasuhiro Matsumoto)
2013-11-04updated for version 7.4.065v7.4.065Bram Moolenaar
Problem: When recording, the character typed at the hit-enter prompt is recorded twice. (Urtica Dioica) Solution: Avoid recording the character twice. (Christian Brabandt)
2013-11-04updated for version 7.4.064v7.4.064Bram Moolenaar
Problem: When replacing a character in Visual block mode, entering a CR does not cause a repeated line break. Solution: Recognize the situation and repeat the line break. (Christian Brabandt)
2013-11-04updated for version 7.4.063v7.4.063Bram Moolenaar
Problem: Crash when using invalid key in Python dictionary. Solution: Check for object to be NULL. Add tests. (ZyX)
2013-11-03Update runtime files.Bram Moolenaar
2013-11-03updated for version 7.4.062v7.4.062Bram Moolenaar
Problem: Configure check for AvailabilityMacros.h is wrong. Solution: Use AC_CHECK_HEADERS().
2013-11-03updated for version 7.4.061v7.4.061Bram Moolenaar
Problem: Availability macros configure check in wrong place. Solution: Also check when not using Darwin. Remove version check.
2013-11-03updated for version 7.4.060v7.4.060Bram Moolenaar
Problem: Declaration has wrong return type for PyObject_SetAttrString(). Solution: Use int instead of PyObject. (Andreas Schwab)
2013-11-03updated for version 7.4.059v7.4.059Bram Moolenaar
Problem: set_last_cursor() may encounter w_buffer being NULL. (Matt Mkaniaris) Solution: Check for NULL.
2013-11-02updated for version 7.4.058v7.4.058Bram Moolenaar
Problem: Warnings on 64 bit Windows. Solution: Add type casts. (Mike Williams)
2013-11-02updated for version 7.4.057v7.4.057Bram Moolenaar
Problem: byteidx() does not work for composing characters. Solution: Add byteidxcomp().