- May 06, 2013
-
-
Bram Moolenaar authored
Problem: Python interface can't easily access options. Solution: Add vim.options, vim.window.options and vim.buffer.options. (ZyX)
-
- May 04, 2013
-
-
Bram Moolenaar authored
Problem: Check for X11 header files fails on Solaris. Solution: Only use -Werror for gcc. (Laurent Blume)
-
Bram Moolenaar authored
Problem: No test for what 7.3.918 fixes. Solution: Add a test. (David Bürgin)
-
Bram Moolenaar authored
Problem: Trying to create a fontset handle when 'guifontset' is not set. Solution: Add curly braces around the code block. (Max Kirillov)
-
Bram Moolenaar authored
Problem: Compiler warning for size_t to int. Solution: Add a type cast. (Mike Williams)
-
Bram Moolenaar authored
Problem: An empty nl.po file does not work with an old msgfmt. Solution: Put a single # in the file. (Laurent Blume)
-
- Apr 24, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Repeating an Ex command after using a Visual motion does not work. Solution: Check for an Ex command being used. (David Bürgin)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Using freed memory when pasting with the mouse (Issue 130). Solution: Get the byte value early. (hint by Dominique Pelle)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: ~/.viminfo is messed up when running tests. Solution: Set the viminfo filename.
-
Bram Moolenaar authored
Problem: Still a crash when writing viminfo. Solution: Add checks for NULL pointers. (Ron Aaron)
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: Python: Access to Vim variables is not so easy. Solution: Define vim.vars and vim.vvars. (ZyX)
-
Bram Moolenaar authored
Problem: Python code in #ifdef branches with only minor differences. Solution: Merge the #ifdef branches. (ZyX)
-
Bram Moolenaar authored
Problem: Duplicate Python code. Solution: Move more items to if_py_both.h. (ZyX) Also avoid compiler warnings for missing initializers.
-
Bram Moolenaar authored
Problem: Possible crash when using a list in Python. Solution: Return early if the list is NULL. (ZyX)
-
Bram Moolenaar authored
Problem: Python uses IndexError when a dict key is not found. Solution: Use KeyError instead. (ZyX)
-
Bram Moolenaar authored
Problem: The "sleep .2" for running tests does not work on Solaris. Solution: Fall back to using "sleep 1". (Laurent Blume)
-
- Apr 15, 2013
-
-
Bram Moolenaar authored
Problem: Crash when writing viminfo. (Ron Aaron) Solution: Prevent freed history info to be used.
-
Bram Moolenaar authored
Problem: Using memory freed by the garbage collector. Solution: Mark items in aucmd_win as used.
-
Bram Moolenaar authored
Problem: Crash on exit writing viminfo. (Ron Aaron) Solution: Check for the history to be empty.
-
Bram Moolenaar authored
Problem: When deleting last buffer in other tab the tabline is not updated. Solution: Set the redraw_tabline flag. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: Outdated comment, ugly condition. Solution: Update a few comments, break line.
-
Bram Moolenaar authored
Problem: Not obvious that some mouse features are mutual-exclusive. Solution: Add a comment.
-
Bram Moolenaar authored
Problem: #if indents are off. Solution: Fix the indents.
-
Bram Moolenaar authored
Problem: Memory leak reported by valgrind in test 91. Solution: Only use default argument when needed.
-
Bram Moolenaar authored
Problem: Configure doesn't always find the shared library. Solution: Change the configure script. (Ken Takata)
-
Bram Moolenaar authored
Problem: Memory leaks in Lua interface. Solution: Fix the leaks, add tests. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: Valgrind error in test 91. (Issue 128) Solution: Pass scope name to find_var_in_ht().
-
Bram Moolenaar authored
Problem: Using wrong RUBY_VER causing Ruby build to break. Solution: Correct the RUBY_VER value. (Yongwei Wu)
-
Bram Moolenaar authored
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)
-
- Apr 14, 2013
-
-
Bram Moolenaar authored
Problem: Still mering problems for viminfo history. Solution: Do not merge lines when writing, don't write old viminfo lines.
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: Test 79 fails on Windows. (Michael Soyka) Solution: Add comment below line causing an error.
-
Bram Moolenaar authored
Problem: Can't build with Ruby 2.0 on a 64 bit system. Solution: Define rb_fix2int and rb_num2int. (Kohei Suzuki)
-
- Apr 12, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Filename completion with 'fileignorecase' does not work for multi-byte characters. Solution: Make 'fileignorecase' work properly. (Hirohito Higashi)
-
Bram Moolenaar authored
Problem: No tests for Visual mode operators, what 7.3.879 fixes. Solution: Add a new test file. (David Bürgin)
-