summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-02-27updated for version 7.4.646Bram Moolenaar
Problem: ":bufdo" may start at a deleted buffer. Solution: Find the first not deleted buffer. (Shane Harper)
2015-02-27updated for version 7.4.645Bram Moolenaar
Problem: When splitting the window in a BufAdd autocommand while still in the first, empty buffer the window count is wrong. Solution: Do not reset b_nwindows to zero and don't increment it.
2015-02-27updated for version 7.4.644Bram Moolenaar
Problem: Stratus VOS doesn't have sync(). Solution: Use fflush(). (Karli Aurelia)
2015-02-27updated for version 7.4.643Bram Moolenaar
Problem: Using the default file format for Mac files. (Issue 77) Solution: Reset the try_mac counter in the right place. (Oswald)
2015-02-27updated for version 7.4.642Bram Moolenaar
Problem: When using "gf" escaped spaces are not handled. Solution: Recognize escaped spaces.
2015-02-27updated for version 7.4.641Bram Moolenaar
Problem: The tabline menu was using ":999tabnew" which is now invalid. Solution: Use ":$tabnew" instead. (Florian Degner)
2015-02-17updated for version 7.4.640Bram Moolenaar
Problem: After deleting characters in Insert mode such that lines are joined undo does not work properly. (issue 324) Solution: Use Insstart instead of Insstart_orig. (Christian Brabandt)
2015-02-17updated for version 7.4.639Bram Moolenaar
Problem: Combination of linebreak and conceal doesn't work well. Solution: Fix the display problems. (Christian Brabandt)
2015-02-17updated for version 7.4.638Bram Moolenaar
Problem: Can't build with Lua 5.3 on Windows. Solution: use luaL_optinteger() instead of LuaL_optlong(). (Ken Takata)
2015-02-17updated for version 7.4.637Bram Moolenaar
Problem: Incorrectly read the number of buffer for which an autocommand should be registered. Solution: Reverse check for "<buffer=abuf>". (Lech Lorens)
2015-02-17Add missing test files from 7.4.634 to the repository.Bram Moolenaar
2015-02-17updated for version 7.4.636Bram Moolenaar
Problem: A search with end offset gets stuck at end of file. (Gary Johnson) Solution: When a search doesn't move the cursor repeat it with a higher count. (Christian Brabandt)
2015-02-17updated for version 7.4.635Bram Moolenaar
Problem: If no NL or CR is found in the first block of a file then the 'fileformat' may be set to "mac". (Issue 77) Solution: Check if a CR was found. (eswald)
2015-02-17updated for version 7.4.634Bram Moolenaar
Problem: Marks are not restored after redo + undo. Solution: Fix the way marks are restored. (Olaf Dabrunz)
2015-02-17updated for version 7.4.633Bram Moolenaar
Problem: After 7.4.630 the problem persists. Solution: Also skip redo when calling a user function.
2015-02-17updated for version 7.4.632Bram Moolenaar
Problem: 7.4.592 breaks the netrw plugin, because the autocommands are skipped. Solution: Roll back the change.
2015-02-17updated for version 7.4.631Bram Moolenaar
Problem: The default conceal character is documented to be a space but it's initially a dash. (Christian Brabandt) Solution: Make the intial value a space.
2015-02-17updated for version 7.4.630Bram Moolenaar
Problem: When using Insert mode completion combined with autocommands the redo command may not work. Solution: Do not save the redo buffer when executing autocommands. (Yasuhiro Matsumoto)
2015-02-10updated for version 7.4.629Bram Moolenaar
Problem: Coverity warning for Out-of-bounds read. Solution: Increase MAXWLEN to 254. (Eliseo Martínez)
2015-02-10updated for version 7.4.628Bram Moolenaar
Problem: Compiler warning for variable might be clobbered by longjmp. Solution: Add volatile. (Michael Jarvis)
2015-02-10updated for version 7.4.627Bram Moolenaar
Problem: The last screen cell is not updated. Solution: Respect the "tn" termcap feature. (Hayaki Saito)
2015-02-10updated for version 7.4.626Bram Moolenaar
Problem: MSVC with W4 gives useless warnings. Solution: Disable more warnings. (Mike Williams)
2015-02-10updated for version 7.4.625Bram Moolenaar
Problem: Possible NULL pointer dereference. Solution: Check for NULL before using it. (Mike Williams)
2015-02-10updated for version 7.4.624Bram Moolenaar
Problem: May leak memory or crash when vim_realloc() returns NULL. Solution: Handle a NULL value properly. (Mike Williams)
2015-02-10updated for version 7.4.623Bram Moolenaar
Problem: Crash with pattern: \(\)\{80000} (Dominique Pelle) Solution: When the max limit is large fall back to the old engine.
2015-02-05updated for version 7.4.622Bram Moolenaar
Problem: Compiler warning for unused argument. Solution: Add UNUSED.
2015-02-04updated for version 7.4.621Bram Moolenaar
Problem: Returning 1 in the wrong function. (Raymond Ko) Solution: Return 1 in the right function (hopefully).
2015-02-04updated for version 7.4.620Bram Moolenaar
Problem: Compiler warning for unitinialized variable. (Tony Mechelynck) Solution: Initialize "did_free". (Ben Fritz)
2015-02-04updated for version 7.4.619Bram Moolenaar
Problem: luaV_setref() not returning the correct value. Solution: Return one.
2015-02-03updated for version 7.4.618Bram Moolenaar
Problem: luaV_setref() is missing a return statement. (Ozaki Kiichi) Solution: Put the return statement back.
2015-02-03Update runtime files.Bram Moolenaar
2015-02-03updated for version 7.4.617Bram Moolenaar
Problem: Wrong ":argdo" range does not cause an error. Solution: Reset "cmd" to NULL. (Marcin Szamotulski, Ingo Karkat)
2015-02-03updated for version 7.4.616Bram Moolenaar
Problem: Cannot insert a tab in front of a block. Solution: Correctly compute aop->start. (Christian Brabandt)
2015-02-03updated for version 7.4.615Bram Moolenaar
Problem: Vim hangs when freeing a lot of objects. Solution: Do not go back to the start of the list every time. (Yasuhiro Matsumoto and Ariya Mizutani)
2015-02-03updated for version 7.4.614Bram Moolenaar
Problem: There is no test for what patch 7.4.601 fixes. Solution: Add a test. (Christian Brabandt)
2015-02-03updated for version 7.4.613Bram Moolenaar
Problem: The NFA engine does not implement the 'redrawtime' time limit. Solution: Implement the time limit.
2015-02-03updated for version 7.4.612Bram Moolenaar
Problem: test_eval fails on Mac. Solution: Use the * register instead of the + register. (Jun Takimoto)
2015-02-03updated for version 7.4.611Bram Moolenaar
Problem: Syntax error. Solution: Change statement to return.
2015-02-03updated for version 7.4.610Bram Moolenaar
Problem: Some function headers may be missing from generated .pro files. Solution: Add PROTO to the #ifdef.
2015-02-03updated for version 7.4.609Bram Moolenaar
Problem: For complicated list and dict use the garbage collector can run out of stack space. Solution: Use a stack of dicts and lists to be marked, thus making it iterative instead of recursive. (Ben Fritz)
2015-01-27updated for version 7.4.608Bram Moolenaar
Problem: test_eval fails when the clipboard feature is missing. Solution: Skip part of the test. Reduce the text used.
2015-01-27updated for version 7.4.607Bram Moolenaar
Problem: Compiler warnings for unused variables. Solution: Move them inside #ifdef. (Kazunobu Kuriyama)
2015-01-27updated for version 7.4.606Bram Moolenaar
Problem: May crash when using a small window. Solution: Avoid dividing by zero. (Christian Brabandt)
2015-01-27updated for version 7.4.605Bram Moolenaar
Problem: The # register is not writable, it cannot be restored after jumping around. Solution: Make the # register writable. (Marcin Szamotulski)
2015-01-27updated for version 7.4.604Bram Moolenaar
Problem: Running tests changes viminfo. Solution: Disable viminfo.
2015-01-27updated for version 7.4.603Bram Moolenaar
Problem: 'foldcolumn' may be set such that it fills the whole window, not leaving space for text. Solution: Reduce the foldcolumn width when there is not sufficient room. (idea by Christian Brabandt)
2015-01-27updated for version 7.4.602Bram Moolenaar
Problem: ":set" does not accept hex numbers as documented. Solution: Use vim_str2nr(). (ZyX)
2015-01-27updated for version 7.4.601Bram Moolenaar
Problem: It is not possible to have feedkeys() insert characters. Solution: Add the 'i' flag.
2015-01-27updated for version 7.4.600Bram Moolenaar
Problem: Memory wasted in struct because of aligning. Solution: Split pos in lnum and col. (Dominique Pelle)
2015-01-27updated for version 7.4.599Bram Moolenaar
Problem: Out-of-memory error. Solution: Avoid trying to allocate a negative amount of memory, use size_t instead of int. (Dominique Pelle)