summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-01-17updated for version 7.3.767Bram Moolenaar
Problem: (Win32) The _errno used for iconv may be the wrong one. Solution: Use the _errno from iconv.dll. (Ken Takata)
2013-01-17updated for version 7.3.766Bram Moolenaar
Problem: ":help cpo-*" jumps to the wrong place. Solution: Make it equivalent to ":help cpo-star".
2013-01-17updated for version 7.3.765Bram Moolenaar
Problem: Segfault when doing "cclose" on BufUnload in a python function. (Sean Reifschneider) Solution: Skip window with NULL buffer. (Christian Brabandt)
2013-01-17updated for version 7.3.764Bram Moolenaar
Problem: Not all message translation files are installed. Solution: Also install the converted files.
2013-01-17updated for version 7.3.763Bram Moolenaar
Problem: Jumping to a mark does not open a fold if it is in the same line. (Wiktor Ruben) Solution: Also compare the column after the jump. (Christian Brabandt)
2012-12-16updated for version 7.3.762Bram Moolenaar
Problem: On some systems the tabline is not redrawn. Solution: Call RedrawWindow(). (Charles Peacech)
2012-12-12updated for version 7.3.761Bram Moolenaar
Problem: In Visual mode a "-p does not work. (Marcin Szamotulski) Solution: Avoid writing to "- before putting it. (Christian Brabandt)
2012-12-12updated for version 7.3.760Bram Moolenaar
Problem: dv_ deletes the white space before the line. Solution: Move the cursor to the first non-white. (Christian Brabandt)
2012-12-12updated for version 7.3.759Bram Moolenaar
Problem: MS-Windows: Updating the tabline is slow when there are many tabs. Solution: Disable redrawing while performing the update. (Arseny Kapoulkine)
2012-12-12updated for version 7.3.758Bram Moolenaar
Problem: Matchit plugin does not handle space in #ifdef. Solution: Change matching pattern to allow spaces. (Mike Morearty)
2012-12-12updated for version 7.3.757Bram Moolenaar
Problem: Issue 96: May access freed memory when a put command triggers autocommands. (Dominique Pelle) Solution: Call u_save() before getting y_array.
2012-12-12updated for version 7.3.756Bram Moolenaar
Problem: A location list can get a wrong count in :lvimgrep. Solution: Check if the list was changed by autocommands. (mostly by Christian Brabandt)
2012-12-12updated for version 7.3.755Bram Moolenaar
Problem: Autoconf doesn't find Python 3 if it's called "python". Solution: Search for "python2" and "python3" first, then "python".
2012-12-06updated for version 7.3.754Bram Moolenaar
Problem: Latest nmake is not recognized. Solution: Add nmake version 11.00.51106.1. (Raymond Ko)
2012-12-05updated for version 7.3.753Bram Moolenaar
Problem: When there is a QuitPre autocommand using ":q" twice does not work for exiting when there are more files to edit. Solution: Do not decrement quitmore in an autocommand. (Techlive Zheng)
2012-12-05Update runtime files.Bram Moolenaar
2012-12-05updated for version 7.3.752Bram Moolenaar
Problem: Test 49 script file doesn't fold properly. Solution: Add a colon.
2012-12-05updated for version 7.3.751Bram Moolenaar
Problem: Test 61 is flaky, it fails once in a while. Solution: When it fails retry once.
2012-12-05updated for version 7.3.750Bram Moolenaar
Problem: The justify macro does not always work correctly. Solution: Fix off-by-one error (James McCoy)
2012-12-05updated for version 7.3.749Bram Moolenaar
Problem: Python interface doesn't build without the multi-byte feature. Solution: Add #ifdef. (Ken Takata)
2012-12-05updated for version 7.3.748Bram Moolenaar
Problem: Cannot properly test conceal mode. Solution: Add the screencol() and screenrow() functions. Use them in test88. (Simon Ruderich)
2012-12-05updated for version 7.3.747Bram Moolenaar
Problem: When characters are concealed text aligned with tabs are no longer aligned, e.g. at ":help :index". Solution: Compensate space for tabs for concealed characters. (Dominique Pelle)
2012-12-05updated for version 7.3.746Bram Moolenaar
Problem: Memory leaks when using location lists. Solution: Set qf_title to something. (Christian Brabandt)
2012-12-05updated for version 7.3.745Bram Moolenaar
Problem: Automatically setting 'ttymouse' doesn't work. Solution: Reset the "option was set" flag when using the default.
2012-11-29updated for version 7.3.744Bram Moolenaar
Problem: 64 bit compiler warning. Solution: Add type cast. (Mike Williams)
2012-11-28updated for version 7.3.743Bram Moolenaar
Problem: Tiny build still fails. Solution: Add #else in the right place.
2012-11-28updated for version 7.3.742Bram Moolenaar
Problem: Leaking memory when :vimgrep restores the directory. Solution: Free the allocated memory. (Christian Brabandt)
2012-11-28updated for version 7.3.741Bram Moolenaar
Problem: Tiny build fails. Solution: Move #ifdef. (Ike Devolder)
2012-11-28updated for version 7.3.740Bram Moolenaar
Problem: IOC tool complains about undefined behavior for int. Solution: Change to unsigned int. (Dominique Pelle)
2012-11-28updated for version 7.3.739Bram Moolenaar
Problem: Computing number of lines may have an integer overflow. Solution: Check for MAXCOL explicitly. (Dominique Pelle)
2012-11-28Updated runtime files.Bram Moolenaar
2012-11-28updated for version 7.3.738Bram Moolenaar
Problem: Unused function argument. Solution: Remove it. (Christian Brabandt)
2012-11-28updated for version 7.3.737Bram Moolenaar
Problem: When using do_cmdline() recursively did_endif is not reset, causing messages to be overwritten. Solution: Reset did_endif. (Christian Brabandt)
2012-11-28updated for version 7.3.736Bram Moolenaar
Problem: File name completion in input() escapes white space. (Frederic Hardy) Solution: Do not escape white space. (Christian Brabandt)
2012-11-28updated for version 7.3.735Bram Moolenaar
Problem: Cannot build Ruby 1.9 with MingW or Cygwin. Solution: Add another include directory. (Ken Takata)
2012-11-28updated for version 7.3.734Bram Moolenaar
Problem: Cannot put help files in a sub-directory. Solution: Make :helptags work for sub-directories. (Charles Campbell)
2012-11-28updated for version 7.3.733Bram Moolenaar
Problem: Tests fail when including MzScheme. Solution: Change #ifdefs for vim_main2().
2012-11-28updated for version 7.3.732Bram Moolenaar
Problem: Compiler warnings for function arguments. Solution: Use inteptr_t instead of long.
2012-11-28updated for version 7.3.731Bram Moolenaar
Problem: Py3Init_vim() is exported uneccessarily. Solution: Make it static. (Ken Takata)
2012-11-28updated for version 7.3.730Bram Moolenaar
Problem: Crash in PHP file when using syntastic. (Ike Devolder) Solution: Avoid using NULL pointer. (Christian Brabandt)
2012-11-24updated for version 7.3.729Bram Moolenaar
Problem: Building with Ruby fails on some systems. Solution: Remove "static" and add #ifndef PROTO. (Ken Takata)
2012-11-23updated for version 7.3.728Bram Moolenaar
Problem: Cannot compile with MzScheme interface on Ubuntu 12.10. Solution: Find the collects directory under /usr/share.
2012-11-23updated for version 7.3.727Bram Moolenaar
Problem: Can't always find Win32.mak when building GvimExt. Solution: Use same mechanism as in Make_mvc.mak. (Cade Foster)
2012-11-23updated for version 7.3.726Bram Moolenaar
Problem: Typos and duplicate info in README. Solution: Fix the text.
2012-11-20updated for version 7.3.725Bram Moolenaar
Problem: :aboveleft and :belowright have no effect on :copen. Solution: Check for cmdmod.split. (Christian Brabandt)
2012-11-20updated for version 7.3.724Bram Moolenaar
Problem: Building with Ruby and Tcl on MS-Windows does not work. Solution: Remove Ruby and Tcl from the big MS-Windows build.
2012-11-20updated for version 7.3.723Bram Moolenaar
Problem: Various tiny problems. Solution: Various tiny fixes.
2012-11-20updated for version 7.3.722Bram Moolenaar
Problem: Perl flags may contain "-g", which breaks "make proto". Solution: Filter out the "-g" flag for cproto. (Ken Takata)
2012-11-20updated for version 7.3.721Bram Moolenaar
Problem: Ruby interface defines local functions globally. Solution: Make the functions static.
2012-11-20updated for version 7.3.720Bram Moolenaar
Problem: Proto files are outdated. Solution: Update the newly generated proto files.