- May 15, 2013
-
-
Bram Moolenaar authored
Problem: Python: List of buffers is not very useful. Solution: Make vim.buffers a map. No iterator yet. (ZyX)
-
- May 13, 2013
-
-
Bram Moolenaar authored
Problem: External program receives the termrespone. Solution: Insert a delay and discard input. (Hayaki Saito)
-
- May 12, 2013
-
-
Bram Moolenaar authored
Problem: Python: Negative indices were failing. Solution: Fix negative indices. Add tests. (ZyX)
-
Bram Moolenaar authored
Problem: Python: SEGV in Buffer functions. Solution: Call CheckBuffer() at the right time. (ZyX)
-
Bram Moolenaar authored
Problem: Stuff in if_py_both.h is ordered badly. Solution: Reorder by type. (ZyX)
-
Bram Moolenaar authored
Problem: Python: Can't get position of window. Solution: Add window.row and window.col. (ZyX)
-
Bram Moolenaar authored
Problem: Using Py_BuildValue is inefficient sometimes. Solution: Use PyLong_FromLong(). (ZyX)
-
Bram Moolenaar authored
Problem: Python: not easy to get to window number. Solution: Add vim.window.number. (ZyX)
-
Bram Moolenaar authored
Problem: More can be shared between Python 2 and 3. Solution: Move code to if_py_both.h. (ZyX)
-
Bram Moolenaar authored
Problem: Ruby 1.8: Missing piece for static linking on 64 bit systems. Solution: Define ruby_init_stack() (Hiroshi Shirosaki) Also fix preprocessor indents.
-
- May 11, 2013
-
-
Bram Moolenaar authored
Problem: Init stack works differently on 64 bit systems. Solution: Handle 64 bit systems and also static library. (Yukihiro Nakadaira)
-
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)
-