summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-04-24updated for version 7.3.906Bram Moolenaar
Problem: The "sleep .2" for running tests does not work on Solaris. Solution: Fall back to using "sleep 1". (Laurent Blume)
2013-04-15updated for version 7.3.905Bram Moolenaar
Problem: Crash when writing viminfo. (Ron Aaron) Solution: Prevent freed history info to be used.
2013-04-15updated for version 7.3.904Bram Moolenaar
Problem: Using memory freed by the garbage collector. Solution: Mark items in aucmd_win as used.
2013-04-15updated for version 7.3.903Bram Moolenaar
Problem: Crash on exit writing viminfo. (Ron Aaron) Solution: Check for the history to be empty.
2013-04-15updated for version 7.3.902Bram Moolenaar
Problem: When deleting last buffer in other tab the tabline is not updated. Solution: Set the redraw_tabline flag. (Yukihiro Nakadaira)
2013-04-15updated for version 7.3.901Bram Moolenaar
Problem: Outdated comment, ugly condition. Solution: Update a few comments, break line.
2013-04-15updated for version 7.3.900Bram Moolenaar
Problem: Not obvious that some mouse features are mutual-exclusive. Solution: Add a comment.
2013-04-15updated for version 7.3.899Bram Moolenaar
Problem: #if indents are off. Solution: Fix the indents.
2013-04-15updated for version 7.3.898Bram Moolenaar
Problem: Memory leak reported by valgrind in test 91. Solution: Only use default argument when needed.
2013-04-15updated for version 7.3.897Bram Moolenaar
Problem: Configure doesn't always find the shared library. Solution: Change the configure script. (Ken Takata)
2013-04-15updated for version 7.3.896Bram Moolenaar
Problem: Memory leaks in Lua interface. Solution: Fix the leaks, add tests. (Yukihiro Nakadaira)
2013-04-15updated for version 7.3.895Bram Moolenaar
Problem: Valgrind error in test 91. (Issue 128) Solution: Pass scope name to find_var_in_ht().
2013-04-15updated for version 7.3.894Bram Moolenaar
Problem: Using wrong RUBY_VER causing Ruby build to break. Solution: Correct the RUBY_VER value. (Yongwei Wu)
2013-04-15updated for version 7.3.893Bram Moolenaar
Problem: Crash when using b:, w: or t: after closing the buffer, window or tabpage. Solution: Allocate the dictionary instead of having it part of the buffer/window/tabpage struct. (Yukihiro Nakadaira)
2013-04-14updated for version 7.3.892Bram Moolenaar
Problem: Still mering problems for viminfo history. Solution: Do not merge lines when writing, don't write old viminfo lines.
2013-04-14updated for version 7.3.891Bram Moolenaar
Problem: Merging viminfo history doesn't work well. Solution: Don't stop when one type of history is empty. Don't merge history when writing viminfo.
2013-04-14updated for version 7.3.890Bram Moolenaar
Problem: Test 79 fails on Windows. (Michael Soyka) Solution: Add comment below line causing an error.
2013-04-14updated for version 7.3.889Bram Moolenaar
Problem: Can't build with Ruby 2.0 on a 64 bit system. Solution: Define rb_fix2int and rb_num2int. (Kohei Suzuki)
2013-04-12Updated runtime files.Bram Moolenaar
2013-04-12updated for version 7.3.888Bram Moolenaar
Problem: Filename completion with 'fileignorecase' does not work for multi-byte characters. Solution: Make 'fileignorecase' work properly. (Hirohito Higashi)
2013-04-12updated for version 7.3.887Bram Moolenaar
Problem: No tests for Visual mode operators, what 7.3.879 fixes. Solution: Add a new test file. (David Bürgin)
2013-04-12updated for version 7.3.886Bram Moolenaar
Problem: Can't build with multi-byte on Solaris 10. Solution: Add #ifdef X_HAVE_UTF8_STRING. (Laurent Blume)
2013-04-12updated for version 7.3.885Bram Moolenaar
Problem: Double free for list and dict in Lua. (Shougo Matsu) Solution: Do not unref list and dict. (Yasuhiro Matsumoto)
2013-04-06Move redif syntax file to the right directory.Bram Moolenaar
Disable recognizing .rdf as a redif file.
2013-04-06updated for version 7.3.884Bram Moolenaar
Problem: Compiler warning for variable shadowing another. (John Little) Solution: Rename the variable. (Christian Brabandt)
2013-04-06updated for version 7.3.883Bram Moolenaar
Problem: Can't build with some combination of features. Solution: Adjust #ifdefs.
2013-04-05Updated runtime files.Bram Moolenaar
2013-04-05updated for version 7.3.882Bram Moolenaar
Problem: CursorHold may trigger after receiving the termresponse. Solution: Set the did_cursorhold flag. (Hayaki Saito)
2013-04-05updated for version 7.3.881Bram Moolenaar
Problem: Python list does not work correctly. Solution: Fix it and add a test. (Yukihiro Nakadaira)
2013-04-05updated for version 7.3.880Bram Moolenaar
Problem: When writing viminfo, old history lines may replace lines written more recently by another Vim instance. Solution: Mark history entries that were read from viminfo and overwrite them when merging with the current viminfo.
2013-04-05updated for version 7.3.879Bram Moolenaar
Problem: When using an ex command in operator pending mode, using Esc to abort the command still executes the operator. (David Bürgin) Solution: Clear the operator when the ex command fails. (Christian Brabandt)
2013-04-05updated for version 7.3.878Bram Moolenaar
Problem: 'fileignorecase' is missing in options window and quickref. Solution: Add the option.
2013-04-03updated for version 7.3.877Bram Moolenaar
Problem: Forward searching with search() is broken. Solution: Fix it and add tests. (Sung Pae)
2013-04-03updated for version 7.3.876Bram Moolenaar
Problem: #if indents are off. Solution: Insert a space where appropriate. (Taro Muraoka)
2013-03-21updated for version 7.3.875Bram Moolenaar
Problem: Build problem with some combination of features. Solution: Use FEAT_XCLIPBOARD instead of FEAT_CLIPBOARD.
2013-03-19updated for version 7.3.874Bram Moolenaar
Problem: Comparing file names does not handle multi-byte characters properly. Solution: Implement multi-byte handling.
2013-03-19updated for version 7.3.873Bram Moolenaar
Problem: Cannot easily use :s to make title case. Solution: Have "\L\u" result in title case. (James McCoy)
2013-03-19updated for version 7.3.872Bram Moolenaar
Problem: On some systems case of file names is always ignored, on others never. Solution: Add the 'fileignorecase' option to control this at runtime. Implies 'wildignorecase'.
2013-03-19updated for version 7.3.871Bram Moolenaar
Problem: search('^$', 'c') does not use the empty match under the cursor. Solution: Special handling of the 'c' flag. (Christian Brabandt) Add tests.
2013-03-19updated for version 7.3.870Bram Moolenaar
Problem: Compiler warnings when using MingW 4.5.3. Solution: Do not use MAKEINTRESOURCE. Adjust #if. (Ken Takata)
2013-03-19updated for version 7.3.869Bram Moolenaar
Problem: bufwinnr() matches buffers in other tabs. Solution: For bufwinnr() and ? only match buffers in the current tab. (Alexey Radkov)
2013-03-19updated for version 7.3.868Bram Moolenaar
Problem: When at the hit-return prompt and using "k" while no text has scrolled off screen, then using "j", an empty line is displayed. Solution: Only act on "k" when text scrolled off screen. Also accept page-up and page-down. (cptstubing)
2013-03-19updated for version 7.3.867Bram Moolenaar
Problem: Matchparen does not update match when using auto-indenting. (Marc Aldorasi) Solution: Add the TextChanged and TextChangedI autocommand events.
2013-03-19updated for version 7.3.866Bram Moolenaar
Problem: Not serving the X selection during system() isn't nice. Solution: When using fork() do not loose the selection, keep serving it. Add a loop similar to handling I/O. (Yukihiro Nakadaira)
2013-03-19Update runtime files.Bram Moolenaar
2013-03-16updated for version 7.3.865Bram Moolenaar
Problem: Mouse position may be wrong. Solution: Let vungetc() restore the mouse position.
2013-03-16updated for version 7.3.864Bram Moolenaar
Problem: Can't build without the mouse feature. Solution: Add an #ifdef. (Ike Devolder)
2013-03-16updated for version 7.3.863Bram Moolenaar
Problem: Problem with 'ambiwidth' detection for ANSI terminal. Solution: Work around not recognizing a term response. (Hayaki Saito)
2013-03-16updated for version 7.3.862Bram Moolenaar
Problem: Dragging the status line can be slow. Solution: Look ahead and drop the drag event if there is a next one.
2013-03-13updated for version 7.3.861Bram Moolenaar
Problem: ":setlocal number" clears global value of 'relativenumber'. Solution: Do it properly. (Markus Heidelberg)