summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-05-06Updated runtime files.Bram Moolenaar
2013-05-06updated for version 7.3.927Bram Moolenaar
Problem: Missing combining characters when putting text in a register. Solution: Include combining characters. (David Bürgin)
2013-05-06updated for version 7.3.926Bram Moolenaar
Problem: Autocommands are triggered by setwinvar() et al. Missing BufEnter on :tabclose. Duplicate WinEnter on :tabclose. Wrong order of events for :tablose and :tabnew. Solution: Fix these autocommand events. (Zyx)
2013-05-06updated for version 7.3.925Bram Moolenaar
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
2013-05-06updated for version 7.3.924Bram Moolenaar
Problem: Python interface can't easily access options. Solution: Add vim.options, vim.window.options and vim.buffer.options. (ZyX)
2013-05-04updated for version 7.3.923Bram Moolenaar
Problem: Check for X11 header files fails on Solaris. Solution: Only use -Werror for gcc. (Laurent Blume)
2013-05-04updated for version 7.3.922Bram Moolenaar
Problem: No test for what 7.3.918 fixes. Solution: Add a test. (David Bürgin)
2013-05-04updated for version 7.3.921Bram Moolenaar
Problem: Trying to create a fontset handle when 'guifontset' is not set. Solution: Add curly braces around the code block. (Max Kirillov)
2013-05-04updated for version 7.3.920Bram Moolenaar
Problem: Compiler warning for size_t to int. Solution: Add a type cast. (Mike Williams)
2013-05-04updated for version 7.3.919Bram Moolenaar
Problem: An empty nl.po file does not work with an old msgfmt. Solution: Put a single # in the file. (Laurent Blume)
2013-04-24Updated runtime files.Bram Moolenaar
2013-04-24updated for version 7.3.918Bram Moolenaar
Problem: Repeating an Ex command after using a Visual motion does not work. Solution: Check for an Ex command being used. (David Bürgin)
2013-04-24updated for version 7.3.917Bram Moolenaar
Problem: When a path ends in a backslash appending a comma has the wrong effect. Solution: Replace a trailing backslash with a slash. (Nazri Ramliy)
2013-04-24updated for version 7.3.916Bram Moolenaar
Problem: Using freed memory when pasting with the mouse (Issue 130). Solution: Get the byte value early. (hint by Dominique Pelle)
2013-04-24updated for version 7.3.915Bram Moolenaar
Problem: When reading a file with encoding conversion fails at the end the next encoding in 'fencs' is not used. Solution: Retry with another encoding when possible. (Taro Muraoka)
2013-04-24updated for version 7.3.914Bram Moolenaar
Problem: ~/.viminfo is messed up when running tests. Solution: Set the viminfo filename.
2013-04-24updated for version 7.3.913Bram Moolenaar
Problem: Still a crash when writing viminfo. Solution: Add checks for NULL pointers. (Ron Aaron)
2013-04-24updated for version 7.3.912Bram Moolenaar
Problem: Typing a ":" command at the hit-enter dialog does not work if the "file changed" dialog happens next. Solution: Check for changed files before giving the hit-enter dialog.
2013-04-24updated for version 7.3.911Bram Moolenaar
Problem: Python: Access to Vim variables is not so easy. Solution: Define vim.vars and vim.vvars. (ZyX)
2013-04-24updated for version 7.3.910Bram Moolenaar
Problem: Python code in #ifdef branches with only minor differences. Solution: Merge the #ifdef branches. (ZyX)
2013-04-24updated for version 7.3.909Bram Moolenaar
Problem: Duplicate Python code. Solution: Move more items to if_py_both.h. (ZyX) Also avoid compiler warnings for missing initializers.
2013-04-24updated for version 7.3.908Bram Moolenaar
Problem: Possible crash when using a list in Python. Solution: Return early if the list is NULL. (ZyX)
2013-04-24updated for version 7.3.907Bram Moolenaar
Problem: Python uses IndexError when a dict key is not found. Solution: Use KeyError instead. (ZyX)
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