summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-01-30updated for version 7.3.794Bram Moolenaar
Problem: Tiny build fails. (Tony Mechelynck) Solution: Adjust #ifdefs.
2013-01-30updated for version 7.3.793Bram Moolenaar
Problem: New interactive :substutite behavior is not tested. Solution: Add tests. (Christian Brabandt)
2013-01-30updated for version 7.3.792Bram Moolenaar
Problem: ":substitute" works differently without confirmation. Solution: Do not change the text when asking for confirmation, only display it.
2013-01-30updated for version 7.3.791Bram Moolenaar
Problem: MzScheme interface doesn't work propely. Solution: Make it work better. (Sergey Khorev)
2013-01-30Update runtime files.Bram Moolenaar
2013-01-30updated for version 7.3.790Bram Moolenaar
Problem: After reloading a buffer the modelines are not processed. Solution: call do_modelines(). (Ken Takata)
2013-01-30updated for version 7.3.789Bram Moolenaar
Problem: "\k" in regexp does not work in other window. Solution: Use the right buffer. (Yukihiro Nakadaira)
2013-01-30updated for version 7.3.788Bram Moolenaar
Problem: When only using patches build fails on missing nl.po. Solution: Create an empty nl.po file.
2013-01-30updated for version 7.3.787Bram Moolenaar
Problem: With 'relativenumber' set it is not possible to see the absolute line number. Solution: For the cursor line show the absolute line number instead of a zero. (Nazri Ramliy)
2013-01-30updated for version 7.3.786Bram Moolenaar
Problem: Python threads don't run in the background (issue 103). Solution: Move the statements to manipulate thread state.
2013-01-25updated for version 7.3.785Bram Moolenaar
Problem: Crash with specific use of search pattern. Solution: Initialize reg_buf to curbuf.
2013-01-25updated for version 7.3.784Bram Moolenaar
Problem: Error when 'guifontwide' has a comma. Solution: Use gui.wide_font. (Taro Muraoka)
2013-01-24updated for version 7.3.783Bram Moolenaar
Problem: Crash when mark is not set. (Dominique Pelle) Solution: Check for NULL.
2013-01-23updated for version 7.3.782Bram Moolenaar
Problem: Windows: IME composition may use a wrong font. Solution: Use 'guifontwide' for IME when it is set. (Taro Muraoka)
2013-01-23updated for version 7.3.781Bram Moolenaar
Problem: Drawing with 'guifontwide' can be slow. Solution: Draw multiple characters at a time. (Taro Muraoka)
2013-01-23updated for version 7.3.780Bram Moolenaar
Problem: char2nr() and nr2char() always use 'encoding'. Solution: Add argument to use utf-8 characters. (Yasuhiro Matsumoto)
2013-01-23updated for version 7.3.779Bram Moolenaar
Problem: Backwards search lands in wrong place when started on a multibyte character. Solution: Do not set extra_col for a backwards search. (Sung Pae)
2013-01-23updated for version 7.3.778Bram Moolenaar
Problem: Compiler error for adding up two pointers. (Titov Anatoly) Solution: Add a type cast. (Ken Takata)
2013-01-23updated for version 7.3.777Bram Moolenaar
Problem: When building with Gnome locale gets reset. Solution: Set locale after gnome_program_init(). (Christian Brabandt)
2013-01-23updated for version 7.3.776Bram Moolenaar
Problem: ml_get error when searching, caused by curwin not matching curbuf. Solution: Avoid changing curbuf. (Lech Lorens)
2013-01-23updated for version 7.3.775Bram Moolenaar
Problem: Cygwin and Mingw builds miss dependency on gui_w48.c. Solution: Add a build rule. (Ken Takata)
2013-01-23updated for version 7.3.774Bram Moolenaar
Problem: Tiny GUI version misses console dialog feature. Solution: Define FEAT_CON_DIALOG when apprpriate. (Christian Brabandt)
2013-01-19updated for version 7.3.773Bram Moolenaar
Problem: Crash when OriginalFirstThunk is zero. Solution: Skip items with OriginalFirstThunk not set. (Ken Takata)
2013-01-17updated for version 7.3.772Bram Moolenaar
Problem: Cursor is at the wrong location and below the end of the file after doing substitutions with confirm flag: %s/x/y/c (Dominique Pelle) Solution: Update the cursor position. (Christian Brabandt & Dominique)
2013-01-17updated for version 7.3.771Bram Moolenaar
Problem: Uninitialized variable. (Yasuhiro Matsumoto) Solution: Set x2 to -1.
2013-01-17updated for version 7.3.770Bram Moolenaar
Problem: Vim.h indentation is inconsistent. Solution: Adjust the indentation. (Elias Diem)
2013-01-17updated for version 7.3.769Bram Moolenaar
Problem: 'matchpairs' does not work with multi-byte characters. Solution: Make it work. (Christian Brabandt)
2013-01-17updated for version 7.3.768Bram Moolenaar
Problem: settabvar() and setwinvar() may move the cursor. Solution: Save and restore the cursor position when appropriate. (idea by Yasuhiro Matsumoto)
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)