- May 11, 2013
-
-
Bram Moolenaar authored
Problem: E381 and E380 make the user think nothing happened. Solution: Display the message indicating what error list is now active. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Ruby on Mac crashes due to GC failure. Solution: Init the stack from main(). (Hiroshi Shirosaki)
-
Bram Moolenaar authored
Problem: Compiler warning for uninitialized variable. (Tony Mechelynck) Solution: Initialize the variable.
-
- May 07, 2013
-
-
Bram Moolenaar authored
Problem: No completion for :xmap and :smap. (Yukihiro Nakadaira) Solution: Add the case statements. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: MSVC 2012 update is not recognized. Solution: Update the version in the makefile. (Raymond Ko)
-
- May 06, 2013
-
-
Bram Moolenaar authored
Problem: Compiler warning for unused variable. Not freeing unused string. Solution: Remove the variable. Clear the options.
-
Bram Moolenaar authored
Problem: Can't build with strict C compiler. Solution: Move declaration to start of block. (Taro Muraoka)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Missing combining characters when putting text in a register. Solution: Include combining characters. (David Bürgin)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
-
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)
-